Skip to content

Commit c7327b1

Browse files
authored
python3Packages.requirements-parser: 0.11.0 -> 0.13.0 (#410485)
2 parents c28b140 + ca8260a commit c7327b1

File tree

1 file changed

+6
-8
lines changed
  • pkgs/development/python-modules/requirements-parser

1 file changed

+6
-8
lines changed

pkgs/development/python-modules/requirements-parser/default.nix

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,27 @@
55
poetry-core,
66
pytestCheckHook,
77
pythonOlder,
8-
setuptools,
9-
types-setuptools,
8+
packaging,
109
}:
1110

1211
buildPythonPackage rec {
1312
pname = "requirements-parser";
14-
version = "0.11.0";
13+
version = "0.13.0";
1514
pyproject = true;
1615

17-
disabled = pythonOlder "3.7";
16+
disabled = pythonOlder "3.8";
1817

1918
src = fetchFromGitHub {
2019
owner = "madpah";
2120
repo = "requirements-parser";
2221
tag = "v${version}";
23-
hash = "sha256-o9IriQXa2Pd7s16IENqcWgi73XZQoXsbXU471V1CFaI=";
22+
hash = "sha256-AwsLcHjPfP+cYpKCQVgIcyzUhnqeIBJ92QLR48E6EtI=";
2423
};
2524

2625
build-system = [ poetry-core ];
2726

2827
dependencies = [
29-
setuptools
30-
types-setuptools
28+
packaging
3129
];
3230

3331
nativeCheckInputs = [ pytestCheckHook ];
@@ -37,7 +35,7 @@ buildPythonPackage rec {
3735
meta = with lib; {
3836
description = "Pip requirements file parser";
3937
homepage = "https://github.com/davidfischer/requirements-parser";
40-
changelog = "https://github.com/madpah/requirements-parser/blob/v${version}/CHANGELOG.md";
38+
changelog = "https://github.com/madpah/requirements-parser/blob/${src.tag}/CHANGELOG.md";
4139
license = licenses.bsd2;
4240
maintainers = [ ];
4341
};

0 commit comments

Comments
 (0)