mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
69b393ace5
These URLs are reported as problematic by Repology. It could be a permanent redirection or the page does not exist anymore
27 lines
521 B
Nix
27 lines
521 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "bugz-0.9.3";
|
|
version = "0.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "williamh";
|
|
repo = "pybugz";
|
|
rev = "0.13";
|
|
sha256 = "1nw07q7r078dp82rcrhvvnhmnaqjx6f8a6cdjgrsiy6fryrx9dwz";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/williamh/pybugz";
|
|
description = "Command line interface for Bugzilla";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
|
|
}
|