python310Packages.txaio: add changelog to meta
This commit is contained in:
parent
75718252aa
commit
cfe940406e
1 changed files with 7 additions and 2 deletions
|
@ -12,11 +12,13 @@
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "txaio";
|
pname = "txaio";
|
||||||
version = "22.2.1";
|
version = "22.2.1";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-LkWCtw8EsjRZCCVGhKmEIGwNm1DjB0okpMVauiHSTQE=";
|
hash = "sha256-LkWCtw8EsjRZCCVGhKmEIGwNm1DjB0okpMVauiHSTQE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -42,11 +44,14 @@ buildPythonPackage rec {
|
||||||
"test_cancel"
|
"test_cancel"
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "txaio" ];
|
pythonImportsCheck = [
|
||||||
|
"txaio"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Utilities to support code that runs unmodified on Twisted and asyncio";
|
description = "Utilities to support code that runs unmodified on Twisted and asyncio";
|
||||||
homepage = "https://github.com/crossbario/txaio";
|
homepage = "https://github.com/crossbario/txaio";
|
||||||
|
changelog = "https://github.com/crossbario/txaio/blob/v${version}/docs/releases.rst";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue