mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 00:54:40 +00:00
python3Packages.chainstream: init at 1.0.1
This commit is contained in:
parent
7394735942
commit
bd1ab1222f
26
pkgs/development/python-modules/chainstream/default.nix
Normal file
26
pkgs/development/python-modules/chainstream/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user