Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / unidata-blocks / default.nix
blob93857756bb651a923afde2d61049fde15c9fa207
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 , nix-update-script
7 , hatch-vcs
8 , hatchling
9 , langcodes
12 buildPythonPackage rec {
13   pname = "unidata-blocks";
14   version = "0.0.10";
16   disabled = pythonOlder "3.11";
18   src = fetchPypi {
19     pname = "unidata_blocks";
20     inherit version;
21     hash = "sha256-wwiOjfIAx6AZtK98uuPQ0jwblq+CdnMQp+JkQWh+RgM=";
22   };
24   format = "pyproject";
26   nativeBuildInputs = [
27     hatch-vcs
28     hatchling
29   ];
31   propagatedBuildInputs = [ langcodes ];
33   nativeCheckInputs = [ pytestCheckHook ];
35   passthru.updateScript = nix-update-script { };
37   meta = {
38     homepage = "https://github.com/TakWolf/unidata-blocks";
39     description = "A library that helps query unicode blocks by Blocks.txt";
40     platforms = lib.platforms.all;
41     license = lib.licenses.mit;
42     maintainers = with lib.maintainers; [ h7x4 ];
43   };