python310Packages.can: add changelog to meta
This commit is contained in:
parent
167a0708ea
commit
5c0ea71a81
1 changed files with 5 additions and 4 deletions
|
@ -15,16 +15,16 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-can";
|
pname = "can";
|
||||||
version = "4.0.0";
|
version = "4.0.0";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "hardbyte";
|
owner = "hardbyte";
|
||||||
repo = pname;
|
repo = "python-can";
|
||||||
rev = version;
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-/z7zBfVbO7x4UtzWOXolH2YrtYWgsvRLObWwz8sqOEc=";
|
hash = "sha256-/z7zBfVbO7x4UtzWOXolH2YrtYWgsvRLObWwz8sqOEc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -74,6 +74,7 @@ buildPythonPackage rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "CAN support for Python";
|
description = "CAN support for Python";
|
||||||
homepage = "https://python-can.readthedocs.io";
|
homepage = "https://python-can.readthedocs.io";
|
||||||
|
changelog = "https://github.com/hardbyte/python-can/releases/tag/v${version}";
|
||||||
license = licenses.lgpl3Only;
|
license = licenses.lgpl3Only;
|
||||||
maintainers = with maintainers; [ fab sorki ];
|
maintainers = with maintainers; [ fab sorki ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue