python3Packages.pysyncobj: init at 0.3.7

This commit is contained in:
Fabian Affolter 2021-02-03 10:12:40 +01:00 committed by Jonathan Ringer
parent d1f97a5eb5
commit 84210a8538
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "pysyncobj";
version = "0.3.7";
src = fetchFromGitHub {
owner = "bakwc";
repo = "PySyncObj";
rev = version;
sha256 = "0i7gjapaggkfvys4rgd4krpmh6mxwpzv30ngiwb6ddgp8jx0nzxk";
};
# Tests require network features
doCheck = false;
pythonImportsCheck = [ "pysyncobj" ];
meta = with lib; {
description = "Python library for replicating your class";
homepage = "https://github.com/bakwc/PySyncObj";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -5991,6 +5991,8 @@ in {
pysychonaut = callPackage ../development/python-modules/pysychonaut { };
pysyncobj = callPackage ../development/python-modules/pysyncobj { };
pytabix = callPackage ../development/python-modules/pytabix { };
pytado = callPackage ../development/python-modules/pytado { };