lol
1{ lib, fetchFromGitHub, python3Packages }:
2
3python3Packages.buildPythonApplication rec {
4 pname = "peru";
5 version = "1.2.0";
6
7 disabled = python3Packages.pythonOlder "3.5";
8
9 src = fetchFromGitHub {
10 owner = "buildinspace";
11 repo = "peru";
12 rev = version;
13 sha256 = "0p4j51m89glx12cd65lcnbwpvin0v49wkhrx06755skr7v37pm2a";
14 };
15
16 propagatedBuildInputs = with python3Packages; [ pyyaml docopt ];
17
18 # No tests in archive
19 doCheck = false;
20
21 meta = with lib; {
22 homepage = "https://github.com/buildinspace/peru";
23 description = "A tool for including other people's code in your projects";
24 license = licenses.mit;
25 platforms = platforms.unix;
26 };
27
28}