Merge pull request #136812 from fabaff/bump-bidict

python3Packages.bidict: 0.21.2 -> 0.21.3

authored by Fabian Affolter and committed by GitHub c8cd39a4 1d141ba9

+13 -8
+13 -8
pkgs/development/python-modules/bidict/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 2 - , setuptools-scm 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 3 4 , sphinx 4 5 , hypothesis 5 6 , py ··· 7 8 , pytest-benchmark 8 9 , sortedcollections 9 10 , sortedcontainers 10 - , isPy3k 11 + , pythonOlder 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "bidict"; 15 - version = "0.21.2"; 16 - disabled = !isPy3k; 16 + version = "0.21.3"; 17 + 18 + disabled = pythonOlder "3.7"; 17 19 18 20 src = fetchPypi { 19 21 inherit pname version; 20 - sha256 = "4fa46f7ff96dc244abfc437383d987404ae861df797e2fd5b190e233c302be09"; 22 + sha256 = "sha256-1QvYH65140GY/8lJeaDrCTn/mts+8yvMk6kT2LPj7R0="; 21 23 }; 22 24 23 - nativeBuildInputs = [ setuptools-scm ]; 24 - propagatedBuildInputs = [ sphinx ]; 25 + propagatedBuildInputs = [ 26 + sphinx 27 + ]; 25 28 26 29 checkInputs = [ 27 30 hypothesis ··· 31 34 sortedcollections 32 35 sortedcontainers 33 36 ]; 37 + 38 + pythonImportsCheck = [ "bidict" ]; 34 39 35 40 meta = with lib; { 36 41 homepage = "https://github.com/jab/bidict";