python3Packages.bidict: 0.21.2 -> 0.21.3

This commit is contained in:
Fabian Affolter 2021-09-05 22:50:05 +02:00
parent 40e0738df1
commit 560f823ebb

View File

@ -1,5 +1,6 @@
{ lib, buildPythonPackage, fetchPypi
, setuptools-scm
{ lib
, buildPythonPackage
, fetchPypi
, sphinx
, hypothesis
, py
@ -7,21 +8,23 @@
, pytest-benchmark
, sortedcollections
, sortedcontainers
, isPy3k
, pythonOlder
}:
buildPythonPackage rec {
pname = "bidict";
version = "0.21.2";
disabled = !isPy3k;
version = "0.21.3";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "4fa46f7ff96dc244abfc437383d987404ae861df797e2fd5b190e233c302be09";
sha256 = "sha256-1QvYH65140GY/8lJeaDrCTn/mts+8yvMk6kT2LPj7R0=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ sphinx ];
propagatedBuildInputs = [
sphinx
];
checkInputs = [
hypothesis
@ -32,6 +35,8 @@ buildPythonPackage rec {
sortedcontainers
];
pythonImportsCheck = [ "bidict" ];
meta = with lib; {
homepage = "https://github.com/jab/bidict";
description = "Efficient, Pythonic bidirectional map data structures and related functionality";