ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / uc-micro-py / default.nix
blob9b20e2251165c4ed0e8dccd2aba1187bc2f64c53
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "uc-micro-py";
10   version = "1.0.1";
11   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchFromGitHub {
16     owner = "tsutsu3";
17     repo = "uc.micro-py";
18     rev = "v${version}";
19     hash = "sha256-23mKwoRGjtxpCOC26V8bAN5QEHLDOoSqPeTlUuIrxZ0=";
20   };
22   checkInputs = [ pytestCheckHook ];
23   pythonImportsCheck = [ "uc_micro" ];
25   meta = with lib; {
26     description = "Micro subset of unicode data files for linkify-it-py";
27     homepage = "https://github.com/tsutsu3/uc.micro-py";
28     license = licenses.mit;
29     maintainers = with maintainers; [ AluisioASG ];
30   };