ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / natsort / default.nix
blob065367e36dd61da29668738ff910e8e7837c61ed
1 { lib
2 , buildPythonPackage
3 , fastnumbers
4 , fetchPypi
5 , glibcLocales
6 , hypothesis
7 , PyICU
8 , pytest-mock
9 , pytestCheckHook
10 , pythonOlder
13 buildPythonPackage rec {
14   pname = "natsort";
15   version = "8.2.0";
16   format = "setuptools";
18   disabled = pythonOlder "3.6";
20   src = fetchPypi {
21     inherit pname version;
22     hash = "sha256-V/hbcsaIsJ4FPNrDAt1bW1PfX3OuILSHT8v/2L94PRE=";
23   };
25   propagatedBuildInputs = [
26     fastnumbers
27     PyICU
28   ];
30   checkInputs = [
31     glibcLocales
32     hypothesis
33     pytest-mock
34     pytestCheckHook
35   ];
37   pythonImportsCheck = [
38     "natsort"
39   ];
41   meta = with lib; {
42     description = "Natural sorting for Python";
43     homepage = "https://github.com/SethMMorton/natsort";
44     license = licenses.mit;
45     maintainers = with maintainers; [ ];
46   };