biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pyuca / default.nix
blobe4a7a2a0b5f1445599555aed4d59d0542f9cf533
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   unittestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "pyuca";
10   version = "1.2";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "jtauber";
15     repo = "pyuca";
16     rev = "v${version}";
17     hash = "sha256-KIWk+/o1MX5J9cO7xITvjHrYg0NdgdTetOzfGVwAI/4=";
18   };
20   pythonImportsCheck = [ "pyuca" ];
22   nativeCheckInputs = [ unittestCheckHook ];
24   meta = with lib; {
25     description = "Python implementation of the Unicode Collation Algorithm";
26     homepage = "https://github.com/jtauber/pyuca";
27     license = licenses.mit;
28     maintainers = with maintainers; [ hexa ];
29   };