3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.reqif: add changelog to meta

- disable on unsupported Python releases
This commit is contained in:
Fabian Affolter 2023-06-04 11:12:41 +02:00 committed by GitHub
parent 82707746d3
commit 7bb810431b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@
, lxml , lxml
, jinja2 , jinja2
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -14,6 +15,8 @@ buildPythonPackage rec {
version = "0.0.35"; version = "0.0.35";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "strictdoc-project"; owner = "strictdoc-project";
repo = pname; repo = pname;
@ -49,6 +52,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python library for ReqIF format"; description = "Python library for ReqIF format";
homepage = "https://github.com/strictdoc-project/reqif"; homepage = "https://github.com/strictdoc-project/reqif";
changelog = "https://github.com/strictdoc-project/reqif/releases/tag/${version}";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ yuu ]; maintainers = with maintainers; [ yuu ];
}; };