Merge pull request #213921 from fabaff/pysyncobj-bump

python310Packages.pysyncobj: 0.3.11 -> 0.3.12
This commit is contained in:
Nick Cao 2023-02-02 08:35:28 +08:00 committed by GitHub
commit 1fc90ab716
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};