Skip to content

Commit 48eab73

Browse files
committed
python310Packages.eradicate: update meta
1 parent 710635f commit 48eab73

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
1-
{ lib, buildPythonPackage, fetchPypi }:
1+
{ lib
2+
, buildPythonPackage
3+
, fetchPypi
4+
}:
25

36
buildPythonPackage 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
}

0 commit comments

Comments
 (0)