nixpkgs/pkgs/applications/version-management/peru/default.nix

29 lines
688 B
Nix
Raw Normal View History

2017-03-10 03:06:40 +00:00
{ stdenv, fetchFromGitHub, python3Packages }:
2017-03-10 03:06:40 +00:00
python3Packages.buildPythonApplication rec {
pname = "peru";
version = "1.2.0";
disabled = python3Packages.pythonOlder "3.5";
2017-03-10 03:06:40 +00:00
src = fetchFromGitHub {
owner = "buildinspace";
repo = "peru";
2019-09-08 23:38:31 +00:00
rev = version;
sha256 = "0p4j51m89glx12cd65lcnbwpvin0v49wkhrx06755skr7v37pm2a";
};
2017-03-10 03:06:40 +00:00
propagatedBuildInputs = with python3Packages; [ pyyaml docopt ];
2016-09-02 18:51:55 +00:00
# No tests in archive
doCheck = false;
2017-03-10 03:06:40 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/buildinspace/peru;
description = "A tool for including other people's code in your projects";
2017-03-10 03:06:40 +00:00
license = licenses.mit;
platforms = platforms.unix;
};
2017-03-10 03:06:40 +00:00
}