evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / uc-micro-py / default.nix
blob42d4f11a2e71a32156cefdd201bfa88c536d9d78
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   pytestCheckHook,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "uc-micro-py";
12   version = "1.0.3";
13   format = "pyproject";
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "tsutsu3";
19     repo = "uc.micro-py";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-Z7XHWeV5I/y19EKg4lzcl9pwRexWnSQ7d8CpQu5xdnI=";
22   };
24   nativeBuildInputs = [ setuptools ];
26   pythonImportsCheck = [ "uc_micro" ];
28   nativeCheckInputs = [ pytestCheckHook ];
30   meta = with lib; {
31     description = "Micro subset of unicode data files for linkify-it-py";
32     homepage = "https://github.com/tsutsu3/uc.micro-py";
33     license = licenses.mit;
34     maintainers = [ ];
35   };