python3Packages.zict: 2.2.0 -> 3.0.0
This commit is contained in:
parent
f5d46e234a
commit
f03a2ba3e1
1 changed files with 27 additions and 10 deletions
|
@ -1,19 +1,36 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi
|
{ lib
|
||||||
, pytest, heapdict, pythonOlder }:
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytestCheckHook
|
||||||
|
, pytest-asyncio
|
||||||
|
, pytest-repeat
|
||||||
|
, pytest-timeout
|
||||||
|
, pythonOlder
|
||||||
|
, setuptools
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "zict";
|
pname = "zict";
|
||||||
version = "2.2.0";
|
version = "3.0.0";
|
||||||
|
format = "pyproject";
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
hash = "sha256-1zZsLiKTMUES3PJDIQhCime5J7AABWGf7vwxDRLYM/M=";
|
|
||||||
};
|
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
buildInputs = [ pytest ];
|
src = fetchPypi {
|
||||||
propagatedBuildInputs = [ heapdict ];
|
inherit pname version;
|
||||||
|
hash = "sha256-4yHiY7apeq/AeQw8+zwEZWtwZuZzjDf//MqV2APJ+6U=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
pytest-asyncio
|
||||||
|
pytestCheckHook
|
||||||
|
pytest-repeat
|
||||||
|
pytest-timeout
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Mutable mapping tools.";
|
description = "Mutable mapping tools.";
|
||||||
|
|
Loading…
Reference in a new issue