Files
phaer b349e80087 treewide: drop copumpkin from maintainers
Their last commit is from March 28th 2019, about 6 years ago.

This PR is in no way intended to diminish Daniels's accomplishments, and they're welcome to just say so if they'd prefer this PR not to be merged. Also, even if it's merged, of course they're always welcome to return to activity and be added back. The intent of this PR is to give more realistic expectations around the maintainership of these packages, and to invite others to step up for maintainership if they rely on those packages.

If this is merged, they should probably also be removed from the list
of committers for the time being.
2025-03-23 20:07:15 +01:00

48 lines
913 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
flit-core,
unittestCheckHook,
# for passthru.tests
awsebcli,
black,
hatchling,
yamllint,
}:
buildPythonPackage rec {
pname = "pathspec";
version = "0.12.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-pILVFQOhqzOxxnpsOBOiaVPb3HHDHayu+ag4xOKfVxI=";
};
nativeBuildInputs = [ flit-core ];
pythonImportsCheck = [ "pathspec" ];
checkInputs = [ unittestCheckHook ];
passthru.tests = {
inherit
awsebcli
black
hatchling
yamllint
;
};
meta = {
description = "Utility library for gitignore-style pattern matching of file paths";
homepage = "https://github.com/cpburnz/python-path-specification";
changelog = "https://github.com/cpburnz/python-pathspec/blob/v${version}/CHANGES.rst";
license = lib.licenses.mpl20;
maintainers = [ ];
};
}