Skip to content

Commit

Permalink
pythonPackage.lexid: init at 2020.1005
Browse files Browse the repository at this point in the history
  • Loading branch information
kfollesdal committed Dec 1, 2020
1 parent 919648a commit faf720d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/development/python-modules/lexid/default.nix
@@ -0,0 +1,22 @@
{ lib, python, pythonOlder, buildPythonPackage, fetchPypi, pytestCheckHook, click }:

buildPythonPackage rec {
pname = "lexid";
version = "2020.1005";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "52333a2b9ebd14aa0dfeb33de72bd159c2dc31adb9c59cddfc486e2b69bfdcd1";
};

propagatedBuildInputs = [ click ];

checkInputs = [ pytestCheckHook ];

meta = with lib; {
description = "micro library to increment lexically ordered numerical ids";
homepage = "https://pypi.org/project/lexid/";
license = licenses.mit;
maintainers = with maintainers; [ kfollesdal ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -3371,6 +3371,8 @@ in {

leveldb = callPackage ../development/python-modules/leveldb { };

lexid = callPackage ../development/python-modules/lexid { };

libagent = callPackage ../development/python-modules/libagent { };

pa-ringbuffer = callPackage ../development/python-modules/pa-ringbuffer { };
Expand Down

0 comments on commit faf720d

Please sign in to comment.