3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #167326 from mweinelt/nix-bisect

This commit is contained in:
Sandro 2022-04-05 16:28:44 +02:00 committed by GitHub
commit 68f788ecd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, fetchFromGitHub
, python3
}:
let
pname = "nix-bisect";
version = "0.4.1";
in
python3.pkgs.buildPythonApplication {
inherit pname version;
format = "setuptools";
src = fetchFromGitHub {
owner = "timokau";
repo = pname;
rev = "v${version}";
hash = "sha256-01vj35mMakqKi5zbMIPQ+R8xdkOWbzpnigd3/SU+svw=";
};
propagatedBuildInputs = with python3.pkgs; [
appdirs
numpy
pexpect
];
doCheck = false;
meta = with lib; {
description = "Bisect nix builds";
homepage = "https://github.com/timokau/nix-bisect";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}

View file

@ -15524,6 +15524,8 @@ with pkgs;
pythonPackages = python3Packages;
};
nix-bisect = callPackage ../development/tools/misc/nix-bisect { };
nix-build-uncached = callPackage ../development/tools/misc/nix-build-uncached { };
nexus = callPackage ../development/tools/repository-managers/nexus {