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