depot/third_party/nixpkgs/pkgs/development/python-modules/lexid/default.nix
Default email 51e09efdfc Project import generated by Copybara.
GitOrigin-RevId: 296793637b22bdb4d23b479879eba0a71c132a66
2020-12-03 09:41:04 +01:00

22 lines
635 B
Nix

{ 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 ];
};
}