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
|
, 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 ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue