python3Packages.pathspec: 0.10.3 -> 0.11.0
https://github.com/cpburnz/python-pathspec/blob/v0.11.0/CHANGES.rst
This commit is contained in:
parent
12193a89a9
commit
6c0a957d92
2 changed files with 14 additions and 6 deletions
|
@ -37,7 +37,6 @@ buildPythonPackage rec {
|
|||
meta = with lib; {
|
||||
description = "brain-dead simple parsing of ini files";
|
||||
homepage = "https://github.com/pytest-dev/iniconfig";
|
||||
changelog = "https://github.com/pytest-dev/iniconfig/blob/v${version}/CHANGELOG";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
|
|
|
@ -2,27 +2,36 @@
|
|||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, flit-core
|
||||
, unittestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pathspec";
|
||||
version = "0.10.3";
|
||||
version = "0.11.0";
|
||||
format = "pyproject";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-ViAN5Ad9nQeRRlqpCVoB1CGGHkBbUJaVUFHe79aX1vY=";
|
||||
hash = "sha256-ZNM41OCRTpHBeSMh5pB7Wlk/GrGFHef8JpVXohsw67w=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
flit-core
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pathspec"
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
unittestCheckHook
|
||||
];
|
||||
|
||||
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 = with lib.maintainers; [ copumpkin ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue