Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 27 lines 606 B view raw
1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4}: 5 6buildPythonPackage rec { 7 pname = "pysyncobj"; 8 version = "0.3.7"; 9 10 src = fetchFromGitHub { 11 owner = "bakwc"; 12 repo = "PySyncObj"; 13 rev = version; 14 sha256 = "0i7gjapaggkfvys4rgd4krpmh6mxwpzv30ngiwb6ddgp8jx0nzxk"; 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}