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