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

27 lines
654 B
Nix
Raw Normal View History

2017-03-10 06:06:40 +03:00
{ stdenv, fetchFromGitHub, python3Packages }:
2017-03-10 06:06:40 +03:00
python3Packages.buildPythonApplication rec {
name = "peru-${version}";
2017-03-10 06:06:40 +03:00
version = "1.1.0";
2017-03-10 06:06:40 +03:00
src = fetchFromGitHub {
owner = "buildinspace";
repo = "peru";
rev = "${version}";
sha256 = "0hvp6pvpsz0f98az4f1wl93gqlz6wj24pjnc5zs1har9rqlpq8y8";
};
2017-03-10 06:06:40 +03:00
propagatedBuildInputs = with python3Packages; [ pyyaml docopt ];
2016-09-02 21:51:55 +03:00
# No tests in archive
doCheck = false;
2017-03-10 06:06:40 +03: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 06:06:40 +03:00
license = licenses.mit;
platforms = platforms.unix;
};
2017-03-10 06:06:40 +03:00
}