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
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysyncobj";
|
||||
version = "0.3.11";
|
||||
version = "0.3.12";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bakwc";
|
||||
repo = "PySyncObj";
|
||||
rev = version;
|
||||
sha256 = "sha256-MsyEDRla+okamffm78hoC2OwhjHLvCDQeZCzPZPbGy4=";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-ZWzvvv13g/iypm+MIl5q0Y8ekqzZEY5upSTPk3MFTPI=";
|
||||
};
|
||||
|
||||
# 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 ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue