tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
honcho: use python3
Frederik Rietdijk
4 years ago
28647e4f
ae202269
+4
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
system
honcho
default.nix
+4
-5
pkgs/tools/system/honcho/default.nix
···
1
-
{ lib, fetchFromGitHub, pythonPackages }:
2
3
let
4
-
inherit (pythonPackages) python;
5
pname = "honcho";
6
7
in
8
9
-
pythonPackages.buildPythonApplication rec {
10
name = "${pname}-${version}";
11
version = "1.0.1";
12
-
namePrefix = "";
13
14
src = fetchFromGitHub {
15
owner = "nickstenning";
···
18
sha256 = "11bd87474qpif20xdcn0ra1idj5k16ka51i658wfpxwc6nzsn92b";
19
};
20
21
-
checkInputs = with pythonPackages; [ jinja2 pytest mock coverage ];
22
23
buildPhase = ''
24
${python.interpreter} setup.py build
···
1
+
{ lib, fetchFromGitHub, python3Packages }:
2
3
let
4
+
inherit (python3Packages) python;
5
pname = "honcho";
6
7
in
8
9
+
python3Packages.buildPythonApplication rec {
10
name = "${pname}-${version}";
11
version = "1.0.1";
0
12
13
src = fetchFromGitHub {
14
owner = "nickstenning";
···
17
sha256 = "11bd87474qpif20xdcn0ra1idj5k16ka51i658wfpxwc6nzsn92b";
18
};
19
20
+
checkInputs = with python3Packages; [ jinja2 pytest mock coverage ];
21
22
buildPhase = ''
23
${python.interpreter} setup.py build