1{
2 lib,
3 fetchPypi,
4 python3Packages,
5}:
6
7python3Packages.buildPythonPackage rec {
8 pname = "chainstream";
9 version = "1.0.1";
10
11 pyproject = true;
12
13 nativeBuildInputs = [ python3Packages.setuptools ];
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-302P1BixEmkODm+qTLZwaWLktrlf9cEziQ/TIVfI07c=";
18 };
19
20 pythonImportsCheck = [ "chainstream" ];
21
22 meta = with lib; {
23 description = "Chain I/O streams together into a single stream";
24 homepage = "https://github.com/rrthomas/chainstream";
25 license = licenses.cc-by-sa-40;
26 maintainers = with maintainers; [ cbley ];
27 };
28}