1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 setuptools,
6}:
7
8buildPythonPackage rec {
9 pname = "standard-chunk";
10 version = "3.13.0";
11 pyproject = true;
12
13 src = fetchFromGitHub {
14 owner = "youknowone";
15 repo = "python-deadlib";
16 tag = "v${version}";
17 hash = "sha256-vhGFTd1yXL4Frqli5D1GwOatwByDjvcP8sxgkdu6Jqg=";
18 };
19
20 sourceRoot = "${src.name}/chunk";
21
22 build-system = [ setuptools ];
23
24 doCheck = false; # no tests
25
26 meta = {
27 description = "Python dead batteries. See PEP 594";
28 homepage = "https://github.com/youknowone/python-deadlib";
29 license = lib.licenses.psfl;
30 maintainers = with lib.maintainers; [ hexa ];
31 };
32}