depot/third_party/nixpkgs/pkgs/development/python-modules/pathtools/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

27 lines
615 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonAtLeast,
}:
buildPythonPackage rec {
pname = "pathtools";
version = "0.1.2";
format = "setuptools";
# imp and distuils usage, last commit in 2016
disabled = pythonAtLeast "3.12";
src = fetchPypi {
inherit pname version;
sha256 = "1h7iam33vwxk8bvslfj4qlsdprdnwf8bvzhqh3jq5frr391cadbw";
};
meta = with lib; {
description = "Pattern matching and various utilities for file systems paths";
homepage = "https://github.com/gorakhargosh/pathtools";
license = licenses.mit;
maintainers = with maintainers; [ goibhniu ];
};
}