python310Packages.pyct: add changelog to meta

- disable on unsupported Python releases
This commit is contained in:
Fabian Affolter 2023-02-01 08:24:25 +01:00 committed by Robert Schütz
parent 4145f63bce
commit 3eb6081abe

View file

@ -1,9 +1,9 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27
, param , param
, pytestCheckHook , pytestCheckHook
, pythonOlder
, pyyaml , pyyaml
, requests , requests
}: }:
@ -11,10 +11,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyct"; pname = "pyct";
version = "0.5.0"; version = "0.5.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-3Z9KxcvY43w1LAQDYGLTxfZ+/sdtQEdh7xawy/JqpqA="; hash = "sha256-3Z9KxcvY43w1LAQDYGLTxfZ+/sdtQEdh7xawy/JqpqA=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -27,8 +30,6 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
doCheck = !isPy27;
pythonImportsCheck = [ pythonImportsCheck = [
"pyct" "pyct"
]; ];
@ -36,6 +37,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "ClI for Python common tasks for users"; description = "ClI for Python common tasks for users";
homepage = "https://github.com/pyviz/pyct"; homepage = "https://github.com/pyviz/pyct";
changelog = "https://github.com/pyviz-dev/pyct/releases/tag/v${version}";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ costrouc ]; maintainers = with maintainers; [ costrouc ];
}; };