python3Packages.convertdate: 2.3.1 -> 2.3.2

+5 -4
+5 -4
pkgs/development/python-modules/convertdate/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "convertdate"; 12 - version = "2.3.1"; 13 - 14 disabled = isPy27; 15 16 # Tests are not available in the PyPI tarball so use GitHub instead. 17 src = fetchFromGitHub { 18 owner = "fitnr"; 19 repo = pname; 20 - rev = version; 21 - sha256 = "1g8sgd3xc9viy0kb1i4xp6bdn1hzwhrnk8kmismla88scivrhq32"; 22 }; 23 24 propagatedBuildInputs = [ ··· 29 checkInputs = [ 30 pytestCheckHook 31 ]; 32 33 meta = with lib; { 34 homepage = "https://github.com/fitnr/convertdate";
··· 9 10 buildPythonPackage rec { 11 pname = "convertdate"; 12 + version = "2.3.2"; 13 disabled = isPy27; 14 15 # Tests are not available in the PyPI tarball so use GitHub instead. 16 src = fetchFromGitHub { 17 owner = "fitnr"; 18 repo = pname; 19 + rev = "v${version}"; 20 + sha256 = "0k7j59sbqwyi72vcjx5vsh3qb6hxfnkfjkd2i6f6lckdr1bkh7fz"; 21 }; 22 23 propagatedBuildInputs = [ ··· 28 checkInputs = [ 29 pytestCheckHook 30 ]; 31 + 32 + pythonImportsCheck = [ "convertdate" ]; 33 34 meta = with lib; { 35 homepage = "https://github.com/fitnr/convertdate";