python310Packages.pysyncobj: add changelog to meta

This commit is contained in:
Fabian Affolter
2023-02-01 08:01:28 +01:00
parent 5aa7222940
commit 460e36f0ed
@@ -1,26 +1,34 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "pysyncobj";
version = "0.3.11";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "bakwc";
repo = "PySyncObj";
rev = version;
sha256 = "sha256-MsyEDRla+okamffm78hoC2OwhjHLvCDQeZCzPZPbGy4=";
rev = "refs/tags/${version}";
hash = "sha256-MsyEDRla+okamffm78hoC2OwhjHLvCDQeZCzPZPbGy4=";
};
# Tests require network features
doCheck = false;
pythonImportsCheck = [ "pysyncobj" ];
pythonImportsCheck = [
"pysyncobj"
];
meta = with lib; {
description = "Python library for replicating your class";
homepage = "https://github.com/bakwc/PySyncObj";
changelog = "https://github.com/bakwc/PySyncObj/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};