python3Packages.bidict: 0.22.0 -> 0.22.1

https://github.com/jab/bidict/blob/v0.22.1/CHANGELOG.rst
This commit is contained in:
Martin Weinelt 2023-02-27 02:14:09 +01:00
parent edf2e79489
commit 2706675bcf

View File

@ -1,9 +1,11 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, setuptools
, sphinx
, hypothesis
, py
, pytest-xdist
, pytestCheckHook
, pytest-benchmark
, sortedcollections
@ -13,15 +15,22 @@
buildPythonPackage rec {
pname = "bidict";
version = "0.22.0";
version = "0.22.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-XIJrPhXpfMbmFd4pV1aEfCgqebecVDDTv8kJsayfW9g=";
src = fetchFromGitHub {
owner = "jab";
repo = "bidict";
rev = "refs/tags/v${version}";
hash = "sha256-mPBruasjQwErl5M91OBf71hArztdRVONOCnqos180DY=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
sphinx
];
@ -29,6 +38,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
hypothesis
py
pytest-xdist
pytestCheckHook
pytest-benchmark
sortedcollections
@ -39,6 +49,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://github.com/jab/bidict";
changelog = "https://github.com/jab/bidict/blob/v${version}/CHANGELOG.rst";
description = "Efficient, Pythonic bidirectional map data structures and related functionality";
license = licenses.mpl20;
maintainers = with maintainers; [ jakewaksbaum ];