python3Packages.requirements-parser: 0.11.0 -> 0.13.0 (#410485)

This commit is contained in:
dotlambda 2025-06-28 22:28:59 -07:00 committed by GitHub
commit c7327b1796
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,29 +5,27 @@
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 ];
@ -37,7 +35,7 @@ buildPythonPackage rec {
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 = [ ];
};