base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ni / nix-bisect / package.nix
blob9927be16d36a02f96e53414a69212fdc94336cca
1 { lib
2 , fetchFromGitHub
3 , python3
4 }:
6 let
7   pname = "nix-bisect";
8   version = "0.4.1-unstable-2024-04-19";
9 in
10 python3.pkgs.buildPythonApplication {
11   inherit pname version;
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "timokau";
16     repo = pname;
17     rev = "4f26082fec0817acbfa8cc6ca4c25caaf77ddcd2";
18     hash = "sha256-zyeE1jYo/9NEG8fB4gQBAR01siP4tyLvjjHN1yUS4Ug=";
19   };
21   propagatedBuildInputs = with python3.pkgs; [
22     appdirs
23     numpy
24     pexpect
25   ];
27   doCheck = false;
29   meta = with lib; {
30     description = "Bisect nix builds";
31     homepage = "https://github.com/timokau/nix-bisect";
32     license = licenses.mit;
33     maintainers = with maintainers; [ hexa ];
34   };