ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / path / default.nix
bloba22aa64e8b1e5d373db316fc59e1e846d1f70f7b
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
6 # build time
7 , setuptools-scm
9 # tests
10 , pytestCheckHook
11 , appdirs
12 , packaging
15 buildPythonPackage rec {
16   pname = "path";
17   version = "16.4.0";
18   format = "pyproject";
20   disabled = pythonOlder "3.7";
22   src = fetchPypi {
23     inherit pname version;
24     hash = "sha256-uvLnV8Sxm+ggj55n5I+0dbSld9VhNZDORmk7298IL1I=";
25   };
27   nativeBuildInputs = [
28     setuptools-scm
29   ];
31   checkInputs = [
32     pytestCheckHook
33   ];
35   disabledTests = [
36     # creates a file, checks when it was last accessed/modified
37     # AssertionError: assert 1650036414.0 == 1650036414.960688
38     "test_utime"
39   ];
41   pythonImportsCheck = [
42     "path"
43   ];
45   meta = with lib; {
46     description = "Object-oriented file system path manipulation";
47     homepage = "https://github.com/jaraco/path";
48     license = licenses.mit;
49     maintainers = with maintainers; [ ];
50   };