Merge pull request #213921 from fabaff/pysyncobj-bump
python310Packages.pysyncobj: 0.3.11 -> 0.3.12
This commit is contained in:
commit
1fc90ab716
1 changed files with 12 additions and 4 deletions
|
@ -1,26 +1,34 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pysyncobj";
|
pname = "pysyncobj";
|
||||||
version = "0.3.11";
|
version = "0.3.12";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "bakwc";
|
owner = "bakwc";
|
||||||
repo = "PySyncObj";
|
repo = "PySyncObj";
|
||||||
rev = version;
|
rev = "refs/tags/${version}";
|
||||||
sha256 = "sha256-MsyEDRla+okamffm78hoC2OwhjHLvCDQeZCzPZPbGy4=";
|
hash = "sha256-ZWzvvv13g/iypm+MIl5q0Y8ekqzZEY5upSTPk3MFTPI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Tests require network features
|
# Tests require network features
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "pysyncobj" ];
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"pysyncobj"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python library for replicating your class";
|
description = "Python library for replicating your class";
|
||||||
homepage = "https://github.com/bakwc/PySyncObj";
|
homepage = "https://github.com/bakwc/PySyncObj";
|
||||||
|
changelog = "https://github.com/bakwc/PySyncObj/releases/tag/${version}";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue