lol
0
fork

Configure Feed

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

python3Packages.pipdate: 0.5.2 -> 0.5.5

+10 -16
+10 -16
pkgs/development/python-modules/pipdate/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pythonOlder 5 - , isPy27 6 5 , appdirs 7 6 , importlib-metadata 8 7 , requests 9 - , pytest 8 + , rich 9 + , setuptools 10 10 , wheel 11 11 }: 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pipdate"; 15 - version = "0.5.2"; 15 + version = "0.5.5"; 16 16 format = "pyproject"; 17 - disabled = isPy27; # abandoned 17 + disabled = pythonOlder "3.6"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "507065231f2d50b6319d483432cba82aadad78be21b7a2969b5881ed8dee9ab4"; 21 + sha256 = "03hr9i691cpg9q2xc1xr4lpd90xs8rba0xjh6qmc1vg7lgcdgbaa"; 22 22 }; 23 23 24 24 nativeBuildInputs = [ wheel ]; ··· 26 26 propagatedBuildInputs = [ 27 27 appdirs 28 28 requests 29 + rich 30 + setuptools 29 31 ] ++ lib.optionals (pythonOlder "3.8") [ 30 32 importlib-metadata 31 33 ]; 32 34 33 - checkInputs = [ 34 - pytest 35 - ]; 36 - 37 - checkPhase = '' 38 - HOME=$(mktemp -d) pytest test/test_pipdate.py 39 - ''; 40 - 41 - # tests require network access 35 + # Tests require network access and pythonImportsCheck requires configuration file 42 36 doCheck = false; 43 37 44 38 meta = with lib; { 45 39 description = "pip update helpers"; 46 40 homepage = "https://github.com/nschloe/pipdate"; 47 - license = licenses.mit; 48 - maintainers = [ maintainers.costrouc ]; 41 + license = licenses.gpl3Plus; 42 + maintainers = with maintainers; [ costrouc ]; 49 43 }; 50 44 }