Merge pull request #282251 from fabaff/gitignore-parser-bump

python311Packages.gitignore-parser: 0.1.10 -> 0.1.11
This commit is contained in:
Fabian Affolter 2024-01-20 11:57:31 +01:00 committed by GitHub
commit 248ec607a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 4 deletions

View File

@ -2,13 +2,14 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "gitignore-parser";
version = "0.1.10";
format = "setuptools";
version = "0.1.11";
pyproject = true;
disabled = pythonOlder "3.7";
@ -16,9 +17,13 @@ buildPythonPackage rec {
owner = "mherrmann";
repo = "gitignore_parser";
rev = "refs/tags/v${version}";
hash = "sha256-uILXtozXRTOJeVpF1lpM19xaibebiwIMyHzdrlnfoec=";
hash = "sha256-y8A8OLgJccYWvKTJs7um8RwFFM0CswbwRojknBmk3TY=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
unittestCheckHook
];

View File

@ -6,7 +6,7 @@
python3.pkgs.buildPythonApplication rec {
pname = "tell-me-your-secrets";
version = "2.4.2";
format = "pyproject";
pyproject = true;
src = fetchFromGitHub {
owner = "valayDave";
@ -17,6 +17,7 @@ python3.pkgs.buildPythonApplication rec {
pythonRelaxDeps = [
"gitignore-parser"
"pandas"
];
nativeBuildInputs = with python3.pkgs; [