2017-03-10 03:06:40 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
2015-04-28 03:44:35 +01:00
|
|
|
|
2017-03-10 03:06:40 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-12-30 16:07:54 +00:00
|
|
|
pname = "peru";
|
2018-12-25 05:24:12 +00:00
|
|
|
version = "1.2.0";
|
2015-04-28 03:44:35 +01:00
|
|
|
|
2018-12-30 16:07:54 +00:00
|
|
|
disabled = python3Packages.pythonOlder "3.5";
|
|
|
|
|
2017-03-10 03:06:40 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "buildinspace";
|
|
|
|
repo = "peru";
|
|
|
|
rev = "${version}";
|
2018-12-25 05:24:12 +00:00
|
|
|
sha256 = "0p4j51m89glx12cd65lcnbwpvin0v49wkhrx06755skr7v37pm2a";
|
2015-04-28 03:44:35 +01:00
|
|
|
};
|
|
|
|
|
2017-03-10 03:06:40 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [ pyyaml docopt ];
|
2016-09-02 19:51:55 +01:00
|
|
|
|
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
2015-04-28 03:44:35 +01:00
|
|
|
|
2017-03-10 03:06:40 +00:00
|
|
|
meta = with stdenv.lib; {
|
2015-04-28 03:44:35 +01:00
|
|
|
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;
|
2015-04-28 03:44:35 +01:00
|
|
|
};
|
2017-03-10 03:06:40 +00:00
|
|
|
|
|
|
|
}
|