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