python3Packages.chainstream: init at 1.0.1

This commit is contained in:
Claudio Bley 2024-02-23 08:27:55 +01:00
parent 7394735942
commit bd1ab1222f
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib, fetchPypi, python3Packages }:
python3Packages.buildPythonPackage rec {
pname = "chainstream";
version = "1.0.1";
pyproject = true;
nativeBuildInputs = [ python3Packages.setuptools ];
src = fetchPypi {
inherit pname version;
hash = "sha256-302P1BixEmkODm+qTLZwaWLktrlf9cEziQ/TIVfI07c=";
};
pythonImportsCheck = [
"chainstream"
];
meta = with lib; {
description = "Chain I/O streams together into a single stream";
homepage = "https://github.com/rrthomas/chainstream";
license = licenses.cc-by-sa-40;
maintainers = with maintainers; [ cbley ];
};
}

View File

@ -2005,6 +2005,8 @@ self: super: with self; {
chainmap = callPackage ../development/python-modules/chainmap { };
chainstream = callPackage ../development/python-modules/chainstream { };
chalice = callPackage ../development/python-modules/chalice { };
chameleon = callPackage ../development/python-modules/chameleon { };