pythonPackages.tag-expressions: init at 1.1.0

Co-Authored-By: Chris <grkcharge@gmail.com>
This commit is contained in:
Wael Nasreddine 2020-06-17 09:45:45 -07:00 committed by Wael Nasreddine
parent 86f9646cb8
commit d4dae82872
No known key found for this signature in database
GPG key ID: FD437548E0BF0F5F
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -1639,6 +1639,8 @@ in {
hdf5 = pkgs.hdf5.override { zlib = pkgs.zlib; };
};
tag-expressions = callPackage ../development/python-modules/tag-expressions { };
tableaudocumentapi = callPackage ../development/python-modules/tableaudocumentapi { };
tesserocr = callPackage ../development/python-modules/tesserocr { };