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