lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python.pkgs.pytools: 2017.4 -> 2017.6

+5 -7
+5 -7
pkgs/development/python-modules/pytools/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchFromGitHub 3 + , fetchPypi 4 4 , decorator 5 5 , appdirs 6 6 , six ··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pytools"; 13 - version = "2017.4"; 13 + version = "2017.6"; 14 14 15 - src = fetchFromGitHub { 16 - owner = "inducer"; 17 - repo = "pytools"; 18 - rev = "8078e74265bb5a3c9676c698595ab5450cd2bfe7"; 19 - sha256 = "17q61l79fcxkj5jxg3fnymi652sdjp5s6kpsabgxp22kma9crr28"; 15 + src = fetchPypi { 16 + inherit pname version; 17 + sha256 = "80f1bba4469d473c1b3969bc8e188c03bcc94d35807a889ceebbfc78e3208115"; 20 18 }; 21 19 22 20 checkInputs = [ pytest ];