forked from mirrors/nixpkgs
python310Packages.reqif: add changelog to meta
- disable on unsupported Python releases
This commit is contained in:
parent
82707746d3
commit
7bb810431b
|
@ -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 ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue