nixpkgs/pkgs/applications/version-management/peru/default.nix
Ryan Mulligan aad2b5a7a8 peru: 1.1.0 -> 1.1.3
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/am3inbmcx4clhav76xvryzy9bs2laiwb-peru-1.1.3/bin/.peru-wrapped -h` got 0 exit code
- ran `/nix/store/am3inbmcx4clhav76xvryzy9bs2laiwb-peru-1.1.3/bin/.peru-wrapped --help` got 0 exit code
- ran `/nix/store/am3inbmcx4clhav76xvryzy9bs2laiwb-peru-1.1.3/bin/.peru-wrapped help` got 0 exit code
- ran `/nix/store/am3inbmcx4clhav76xvryzy9bs2laiwb-peru-1.1.3/bin/.peru-wrapped --version` and found version 1.1.3
- ran `/nix/store/am3inbmcx4clhav76xvryzy9bs2laiwb-peru-1.1.3/bin/peru -h` got 0 exit code
- ran `/nix/store/am3inbmcx4clhav76xvryzy9bs2laiwb-peru-1.1.3/bin/peru --help` got 0 exit code
- ran `/nix/store/am3inbmcx4clhav76xvryzy9bs2laiwb-peru-1.1.3/bin/peru help` got 0 exit code
- ran `/nix/store/am3inbmcx4clhav76xvryzy9bs2laiwb-peru-1.1.3/bin/peru --version` and found version 1.1.3
- found 1.1.3 with grep in /nix/store/am3inbmcx4clhav76xvryzy9bs2laiwb-peru-1.1.3
- found 1.1.3 in filename of file in /nix/store/am3inbmcx4clhav76xvryzy9bs2laiwb-peru-1.1.3
2018-02-28 14:25:04 +00:00

27 lines
654 B
Nix

{ stdenv, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
name = "peru-${version}";
version = "1.1.3";
src = fetchFromGitHub {
owner = "buildinspace";
repo = "peru";
rev = "${version}";
sha256 = "02kr3ib3ppbmcsjy8i8z41vp9gw9gdivy2l5aps12lmaa3rc6727";
};
propagatedBuildInputs = with python3Packages; [ pyyaml docopt ];
# No tests in archive
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/buildinspace/peru;
description = "A tool for including other people's code in your projects";
license = licenses.mit;
platforms = platforms.unix;
};
}