1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4}:
5
6buildPythonPackage rec {
7 pname = "pysyncobj";
8 version = "0.3.11";
9
10 src = fetchFromGitHub {
11 owner = "bakwc";
12 repo = "PySyncObj";
13 rev = version;
14 sha256 = "sha256-MsyEDRla+okamffm78hoC2OwhjHLvCDQeZCzPZPbGy4=";
15 };
16
17 # Tests require network features
18 doCheck = false;
19 pythonImportsCheck = [ "pysyncobj" ];
20
21 meta = with lib; {
22 description = "Python library for replicating your class";
23 homepage = "https://github.com/bakwc/PySyncObj";
24 license = with licenses; [ mit ];
25 maintainers = with maintainers; [ fab ];
26 };
27}