aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/tag-expressions/default.nix
blob: 7082ca54154b51fadea75b638817b46ed2d890a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "tag-expressions";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1c0a49c3c0357976822b03c43db8d4a1c5548e16fb07ac939c10bbd5183f529d";
  };

  checkInputs = [ pytestCheckHook ];

  meta = with lib; {
    description = "Package to parse logical tag expressions";
    homepage = "http://github.com/timofurrer/tag-expressions";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ kalbasit ];
  };
}