Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at r-updates 35 lines 681 B view raw
1{ 2 buildPythonPackage, 3 fetchFromBitbucket, 4 lib, 5 pytestCheckHook, 6 setuptools, 7}: 8 9buildPythonPackage rec { 10 pname = "zcc-helper"; 11 version = "3.6"; 12 pyproject = true; 13 14 src = fetchFromBitbucket { 15 owner = "mark_hannon"; 16 repo = "zcc"; 17 rev = "release_${version}"; 18 hash = "sha256-93zSEGr5y00+heuG0hTME+BkLQBUmHnXXMH12ktMtM4="; 19 }; 20 21 build-system = [ setuptools ]; 22 23 pythonImportsCheck = [ "zcc" ]; 24 25 nativeCheckInputs = [ 26 pytestCheckHook 27 ]; 28 29 meta = { 30 description = "ZIMI ZCC helper module"; 31 homepage = "https://bitbucket.org/mark_hannon/zcc"; 32 license = lib.licenses.mit; 33 maintainers = with lib.maintainers; [ dotlambda ]; 34 }; 35}