My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pysyncobj/default.nix

27 lines
606 B

{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "pysyncobj";
version = "0.3.10";
src = fetchFromGitHub {
owner = "bakwc";
repo = "PySyncObj";
rev = version;
sha256 = "sha256-tcoG0KZewPRYPwDSV7aqrAGw3NF4yj/Ukc+I7HHI9+I=";
};
# 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 ];
};
}