1{
2 buildPythonPackage,
3 fetchFromGitHub,
4 lib,
5 pytestCheckHook,
6 setuptools,
7}:
8
9buildPythonPackage rec {
10 pname = "standard-pipes";
11 version = "3.13.0";
12 pyproject = true;
13
14 src = fetchFromGitHub {
15 owner = "youknowone";
16 repo = "python-deadlib";
17 tag = "v${version}";
18 hash = "sha256-vhGFTd1yXL4Frqli5D1GwOatwByDjvcP8sxgkdu6Jqg=";
19 };
20
21 sourceRoot = "${src.name}/pipes";
22
23 build-system = [ setuptools ];
24
25 pythonImportsCheck = [ "pipes" ];
26
27 nativeCheckInputs = [ pytestCheckHook ];
28
29 meta = {
30 description = "Standard library pipes redistribution";
31 homepage = "https://github.com/youknowone/python-deadlib/tree/main/pipes";
32 license = lib.licenses.psfl;
33 maintainers = with lib.maintainers; [ dotlambda ];
34 };
35}