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