lol

python3Packages.pyutil: init at 3.3.0

+7 -8
+5 -8
pkgs/development/python-modules/pyutil/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 - , setuptoolsDarcs 5 - , setuptoolsTrial 6 , simplejson 7 , twisted 8 , isPyPy 9 }: ··· 17 sha256 = "8c4d4bf668c559186389bb9bce99e4b1b871c09ba252a756ccaacd2b8f401848"; 18 }; 19 20 - buildInputs = [ setuptoolsDarcs setuptoolsTrial ] ++ (if doCheck then [ simplejson ] else []); 21 - propagatedBuildInputs = [ twisted ]; 22 23 - # Tests fail because they try to write new code into the twisted 24 - # package, apparently some kind of plugin. 25 - doCheck = false; 26 27 prePatch = lib.optionalString isPyPy '' 28 grep -rl 'utf-8-with-signature-unix' ./ | xargs sed -i -e "s|utf-8-with-signature-unix|utf-8|g" ··· 41 we're not alone in wanting tools like these. 42 ''; 43 44 - homepage = "http://allmydata.org/trac/pyutil"; 45 license = licenses.gpl2Plus; 46 }; 47 48 }
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 , simplejson 5 + , mock 6 , twisted 7 , isPyPy 8 }: ··· 16 sha256 = "8c4d4bf668c559186389bb9bce99e4b1b871c09ba252a756ccaacd2b8f401848"; 17 }; 18 19 + propagatedBuildInputs = [ simplejson ]; 20 21 + checkInputs = [ mock twisted ]; 22 23 prePatch = lib.optionalString isPyPy '' 24 grep -rl 'utf-8-with-signature-unix' ./ | xargs sed -i -e "s|utf-8-with-signature-unix|utf-8|g" ··· 37 we're not alone in wanting tools like these. 38 ''; 39 40 + homepage = "https://github.com/tpltnt/pyutil"; 41 license = licenses.gpl2Plus; 42 + maintainers = with maintainers; [ prusnak ]; 43 }; 44 45 }
+2
pkgs/top-level/python-packages.nix
··· 5409 5410 python-tado = callPackage ../development/python-modules/python-tado { }; 5411 5412 pkutils = callPackage ../development/python-modules/pkutils { }; 5413 5414 plac = callPackage ../development/python-modules/plac { };
··· 5409 5410 python-tado = callPackage ../development/python-modules/python-tado { }; 5411 5412 + pyutil = callPackage ../development/python-modules/pyutil { }; 5413 + 5414 pkutils = callPackage ../development/python-modules/pkutils { }; 5415 5416 plac = callPackage ../development/python-modules/plac { };