File tree Expand file tree Collapse file tree
pkgs/development/python-modules/eradicate Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- { lib , buildPythonPackage , fetchPypi } :
1+ { lib
2+ , buildPythonPackage
3+ , fetchPypi
4+ } :
25
36buildPythonPackage rec {
47 pname = "eradicate" ;
58 version = "2.1.0" ;
69
710 src = fetchPypi {
811 inherit pname version ;
9- sha256 = "sha256-qsc4SrJbG/IcTAEt6bS/g5iUWhTJjJEVRbLqUKtVgBQ=" ;
12+ hash = "sha256-qsc4SrJbG/IcTAEt6bS/g5iUWhTJjJEVRbLqUKtVgBQ=" ;
1013 } ;
1114
1215 meta = with lib ; {
13- description = "eradicate removes commented-out code from Python files. " ;
16+ description = "Library to remove commented-out code from Python files" ;
1417 homepage = "https://github.com/myint/eradicate" ;
15- license = [ licenses . mit ] ;
16-
17- maintainers = [ maintainers . mmlb ] ;
18+ changelog = "https://github.com/wemake-services/eradicate/releases/tag/2.2.0" ;
19+ license = with licenses ; [ mit ] ;
20+ maintainers = with maintainers ; [ mmlb ] ;
1821 } ;
1922}
You can’t perform that action at this time.
0 commit comments