repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
bugz
/
default.nix
blob
894f2070c2316a929d4f0afab7f53334c912dcc5
1
{ lib
2
, buildPythonPackage
3
, fetchFromGitHub
4
}:
5
6
buildPythonPackage {
7
pname = "bugz-0.9.3";
8
version = "0.13";
9
10
src = fetchFromGitHub {
11
owner = "williamh";
12
repo = "pybugz";
13
rev = "0.13";
14
sha256 = "1nw07q7r078dp82rcrhvvnhmnaqjx6f8a6cdjgrsiy6fryrx9dwz";
15
};
16
17
doCheck = false;
18
19
meta = with lib; {
20
homepage = "https://github.com/williamh/pybugz";
21
description = "Command line interface for Bugzilla";
22
mainProgram = "bugz";
23
license = licenses.gpl2;
24
maintainers = [ ];
25
};
26
27
}