Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 33 lines 651 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5}: 6 7python3Packages.buildPythonApplication rec { 8 pname = "pybugz"; 9 version = "0.14"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "williamh"; 14 repo = "pybugz"; 15 tag = version; 16 hash = "sha256-rhiCQPSh987QEM4aMd3R/7e6l+pm2eJDE7f5LckIuho="; 17 }; 18 19 build-system = [ python3Packages.flit-core ]; 20 21 pythonImportsCheck = [ "bugz" ]; 22 23 # no tests 24 doCheck = false; 25 26 meta = { 27 homepage = "https://github.com/williamh/pybugz"; 28 description = "Command line interface for Bugzilla"; 29 mainProgram = "bugz"; 30 license = lib.licenses.gpl2Plus; 31 maintainers = [ ]; 32 }; 33}