1{ lib, python, pythonOlder, buildPythonPackage, fetchPypi, pytestCheckHook, click }:
2
3buildPythonPackage rec {
4 pname = "lexid";
5 version = "2020.1005";
6 disabled = pythonOlder "3.6";
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "52333a2b9ebd14aa0dfeb33de72bd159c2dc31adb9c59cddfc486e2b69bfdcd1";
10 };
11
12 propagatedBuildInputs = [ click ];
13
14 checkInputs = [ pytestCheckHook ];
15
16 meta = with lib; {
17 description = "micro library to increment lexically ordered numerical ids";
18 homepage = "https://pypi.org/project/lexid/";
19 license = licenses.mit;
20 maintainers = with maintainers; [ kfollesdal ];
21 };
22}