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