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; {
|
meta = with lib; {
|
||||||
description = "brain-dead simple parsing of ini files";
|
description = "brain-dead simple parsing of ini files";
|
||||||
homepage = "https://github.com/pytest-dev/iniconfig";
|
homepage = "https://github.com/pytest-dev/iniconfig";
|
||||||
changelog = "https://github.com/pytest-dev/iniconfig/blob/v${version}/CHANGELOG";
|
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ jonringer ];
|
maintainers = with maintainers; [ jonringer ];
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,27 +2,36 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, setuptools
|
, flit-core
|
||||||
|
, unittestCheckHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pathspec";
|
pname = "pathspec";
|
||||||
version = "0.10.3";
|
version = "0.11.0";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
disabled = pythonOlder "3.7";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-ViAN5Ad9nQeRRlqpCVoB1CGGHkBbUJaVUFHe79aX1vY=";
|
hash = "sha256-ZNM41OCRTpHBeSMh5pB7Wlk/GrGFHef8JpVXohsw67w=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
setuptools
|
flit-core
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"pathspec"
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
unittestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Utility library for gitignore-style pattern matching of file paths";
|
description = "Utility library for gitignore-style pattern matching of file paths";
|
||||||
homepage = "https://github.com/cpburnz/python-path-specification";
|
homepage = "https://github.com/cpburnz/python-path-specification";
|
||||||
|
changelog = "https://github.com/cpburnz/python-pathspec/blob/v${version}/CHANGES.rst";
|
||||||
license = lib.licenses.mpl20;
|
license = lib.licenses.mpl20;
|
||||||
maintainers = with lib.maintainers; [ copumpkin ];
|
maintainers = with lib.maintainers; [ copumpkin ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue