mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 00:34:00 +00:00
fcd7a7679a
Diff: https://github.com/mherrmann/gitignore_parser/compare/refs/tags/v0.1.5...v0.1.6 Changelog: https://github.com/mherrmann/gitignore_parser/releases/tag/v0.1.6
38 lines
823 B
Nix
38 lines
823 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, unittestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gitignore-parser";
|
|
version = "0.1.6";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mherrmann";
|
|
repo = "gitignore_parser";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-RAtXh57WU67fKQhhItdOm25BYfh3ucc0eyWUHGksnLg=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
unittestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"gitignore_parser"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A spec-compliant gitignore parser";
|
|
homepage = "https://github.com/mherrmann/gitignore_parser";
|
|
changelog = "https://github.com/mherrmann/gitignore_parser/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|