tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
gixy: 0.1.8 -> 0.1.9
WilliButz
8 years ago
51ec5a3b
bcb52718
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
admin
gixy
default.nix
+4
-3
pkgs/tools/admin/gixy/default.nix
···
1
1
{ lib, fetchFromGitHub, python }:
2
2
3
3
python.pkgs.buildPythonApplication rec {
4
4
-
name = "gixy-${version}";
5
5
-
version = "0.1.8";
4
4
+
pname = "gixy";
5
5
+
version = "0.1.9";
6
6
7
7
# package is only compatible with python 2.7 and 3.5+
8
8
disabled = with python.pkgs; !(pythonAtLeast "3.5" || isPy27);
9
9
10
10
+
# fetching from GitHub because the PyPi source is missing the tests
10
11
src = fetchFromGitHub {
11
12
owner = "yandex";
12
13
repo = "gixy";
13
14
rev = "v${version}";
14
14
-
sha256 = "0dg8j8pqlzdvmyfkphrizfqzggr64npb9mnm1dcwm6c3z6k2b0ii";
15
15
+
sha256 = "11aps8a8xg1nlw36jgrmnaf38imfz2rj67wnlalrrsqb616xipcv";
15
16
};
16
17
17
18
postPatch = ''