python.pkgs.natsort: 5.4.1 -> 5.5.0
This commit is contained in:
parent
023580878c
commit
0f2570554c
@ -2,32 +2,31 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, hypothesis
|
|
||||||
, pytestcache
|
|
||||||
, pytest
|
, pytest
|
||||||
|
, pytestcov
|
||||||
|
, pytest-mock
|
||||||
|
, hypothesis
|
||||||
, glibcLocales
|
, glibcLocales
|
||||||
, mock ? null
|
|
||||||
, pathlib ? null
|
, pathlib ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "natsort";
|
pname = "natsort";
|
||||||
version = "5.4.1";
|
version = "5.5.0";
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
hypothesis
|
|
||||||
pytestcache
|
|
||||||
pytest
|
pytest
|
||||||
|
pytestcov
|
||||||
|
pytest-mock
|
||||||
|
hypothesis
|
||||||
glibcLocales
|
glibcLocales
|
||||||
]
|
]
|
||||||
# pathlib was made part of standard library in 3.5:
|
# pathlib was made part of standard library in 3.5:
|
||||||
++ (lib.optionals (pythonOlder "3.4") [ pathlib ])
|
++ (lib.optionals (pythonOlder "3.4") [ pathlib ]);
|
||||||
# based on testing-requirements.txt:
|
|
||||||
++ (lib.optionals (pythonOlder "3.3") [ mock ]);
|
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "ae73b005135dc152e7b282b2d4cf19380d8cab4c4026461ee9f37bf3aa12e344";
|
sha256 = "e29031f37aa264145d6ad9acdab335479ce3636806fc7aa70b7675a2b2198d09";
|
||||||
};
|
};
|
||||||
|
|
||||||
# testing based on project's tox.ini
|
# testing based on project's tox.ini
|
||||||
|
Loading…
x
Reference in New Issue
Block a user