python3Packages.requirements-parser: 0.11.0 -> 0.13.0

R. Ryantm ca8260a9 1a64f763

Changed files
+6 -8
pkgs
development
python-modules
requirements-parser
+6 -8
pkgs/development/python-modules/requirements-parser/default.nix
···
poetry-core,
pytestCheckHook,
pythonOlder,
-
setuptools,
-
types-setuptools,
+
packaging,
}:
buildPythonPackage rec {
pname = "requirements-parser";
-
version = "0.11.0";
+
version = "0.13.0";
pyproject = true;
-
disabled = pythonOlder "3.7";
+
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "madpah";
repo = "requirements-parser";
tag = "v${version}";
-
hash = "sha256-o9IriQXa2Pd7s16IENqcWgi73XZQoXsbXU471V1CFaI=";
+
hash = "sha256-AwsLcHjPfP+cYpKCQVgIcyzUhnqeIBJ92QLR48E6EtI=";
};
build-system = [ poetry-core ];
dependencies = [
-
setuptools
-
types-setuptools
+
packaging
];
nativeCheckInputs = [ pytestCheckHook ];
···
meta = with lib; {
description = "Pip requirements file parser";
homepage = "https://github.com/davidfischer/requirements-parser";
-
changelog = "https://github.com/madpah/requirements-parser/blob/v${version}/CHANGELOG.md";
+
changelog = "https://github.com/madpah/requirements-parser/blob/${src.tag}/CHANGELOG.md";
license = licenses.bsd2;
maintainers = [ ];
};