ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / bidict / default.nix
blobf59e6418fe91b59a3013124a6bd603b9d7803c6f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , sphinx
5 , hypothesis
6 , py
7 , pytestCheckHook
8 , pytest-benchmark
9 , sortedcollections
10 , sortedcontainers
11 , pythonOlder
14 buildPythonPackage rec {
15   pname = "bidict";
16   version = "0.22.0";
18   disabled = pythonOlder "3.7";
20   src = fetchPypi {
21     inherit pname version;
22     sha256 = "sha256-XIJrPhXpfMbmFd4pV1aEfCgqebecVDDTv8kJsayfW9g=";
23   };
25   propagatedBuildInputs = [
26     sphinx
27   ];
29   checkInputs = [
30     hypothesis
31     py
32     pytestCheckHook
33     pytest-benchmark
34     sortedcollections
35     sortedcontainers
36   ];
38   pythonImportsCheck = [ "bidict" ];
40   meta = with lib; {
41     homepage = "https://github.com/jab/bidict";
42     description = "Efficient, Pythonic bidirectional map data structures and related functionality";
43     license = licenses.mpl20;
44     maintainers = with maintainers; [ jakewaksbaum ];
45   };