lol

gixy: 0.1.8 -> 0.1.9

+4 -3
+4 -3
pkgs/tools/admin/gixy/default.nix
··· 1 1 { lib, fetchFromGitHub, python }: 2 2 3 3 python.pkgs.buildPythonApplication rec { 4 - name = "gixy-${version}"; 5 - version = "0.1.8"; 4 + pname = "gixy"; 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 + # 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 - sha256 = "0dg8j8pqlzdvmyfkphrizfqzggr64npb9mnm1dcwm6c3z6k2b0ii"; 15 + sha256 = "11aps8a8xg1nlw36jgrmnaf38imfz2rj67wnlalrrsqb616xipcv"; 15 16 }; 16 17 17 18 postPatch = ''