depot/third_party/nixpkgs/pkgs/development/python-modules/path/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

49 lines
981 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
more-itertools,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "path";
version = "16.14.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-26qn79RgL9a6jYKJDceCPWnl3nQKboQtmRmw+q8rao4=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
nativeCheckInputs = [
more-itertools
pytestCheckHook
];
disabledTests = [
# creates a file, checks when it was last accessed/modified
# AssertionError: assert 1650036414.0 == 1650036414.960688
"test_utime"
];
pythonImportsCheck = [ "path" ];
meta = with lib; {
description = "Object-oriented file system path manipulation";
homepage = "https://github.com/jaraco/path";
changelog = "https://github.com/jaraco/path/blob/v${version}/NEWS.rst";
license = licenses.mit;
maintainers = [ ];
};
}