python312Packages.requirements-parser: refactor

- add changelog to meta
This commit is contained in:
Fabian Affolter 2024-03-28 10:59:02 +01:00 committed by GitHub
parent b3ffea863c
commit e577190de3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 5 deletions

View File

@ -11,22 +11,22 @@
buildPythonPackage rec {
pname = "requirements-parser";
version = "0.6.0";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "madpah";
repo = pname;
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; [ ];
};
}