mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-10 06:04:14 +00:00
![Guillaume Girol](/assets/img/avatar_default.png)
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
29 lines
702 B
Nix
29 lines
702 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, regex, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pygrok";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "garyelephant";
|
|
repo = "pygrok";
|
|
rev = "v${version}";
|
|
sha256 = "07487rcmv74srnchh60jp0vg46g086qmpkaj8gxqhp9rj47r1s4m";
|
|
};
|
|
|
|
propagatedBuildInputs = [ regex ];
|
|
|
|
nativeCheckInputs = [ pytest ];
|
|
checkPhase = ''
|
|
pytest
|
|
'';
|
|
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ winpat ];
|
|
description = "A python implementation of jordansissel's grok regular expression library";
|
|
homepage = "https://github.com/garyelephant/pygrok";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|