Files
nixpkgs/pkgs/development/python-modules/pathtools/default.nix
Ivan Trubach 90fbf71333 treewide: remove maintainer goibhniu
Inactive in Nixpkgs since 2018 (and a single PR in 2022).
https://github.com/NixOS/nixpkgs/issues?q=author%3Acillianderoiste
2024-07-24 13:38:22 +03:00

28 lines
588 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 = [ ];
};
}