Merge pull request #299708 from r-ryantm/auto-update/python312Packages.requirements-parser

python312Packages.requirements-parser: 0.5.0 -> 0.6.0
This commit is contained in:
Fabian Affolter 2024-03-28 12:10:41 +01:00 committed by GitHub
commit fe82a5d1b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 8 deletions

View File

@ -10,23 +10,23 @@
buildPythonPackage rec {
pname = "requirements-parser";
version = "0.5.0";
format = "pyproject";
version = "0.6.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "madpah";
repo = pname;
rev = "v${version}";
hash = "sha256-e2dfVBMh1uGRMDw7OdPefO4/eRxc3BGwvy/D7u5ipkk=";
repo = "requirements-parser";
rev = "refs/tags/v${version}";
hash = "sha256-fUx6NBD6qxAyArGgCiB2J1Ak7pudx/LI0+rCHjLnc1M=";
};
nativeBuildInputs = [
build-system = [
poetry-core
];
propagatedBuildInputs = [
dependencies = [
setuptools
types-setuptools
];
@ -42,7 +42,8 @@ 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";
license = licenses.bsd2;
maintainers = [ ];
maintainers = with maintainers; [ ];
};
}