Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pathlib / default.nix
blob1e34b92a4314de914efe2dcc9facd69fd11041de
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , unittestCheckHook
5 , pythonAtLeast
6 }:
8 buildPythonPackage rec {
9   pname = "pathlib";
10   version = "1.0.1";
11   format = "setuptools";
12   disabled = pythonAtLeast "3.4"; # Was added to std library in Python 3.4
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "17zajiw4mjbkkv6ahp3xf025qglkj0805m9s41c45zryzj6p2h39";
17   };
19   nativeCheckInputs = [ unittestCheckHook ];
21   meta = {
22     description = "Object-oriented filesystem paths";
23     homepage = "https://pathlib.readthedocs.org/";
24     license = lib.licenses.mit;
25     maintainers = with lib.maintainers; [ ];
26   };