portfolio: 0.71.2 -> 0.72.2 (#360387)
[NixPkgs.git] / pkgs / development / python-modules / chainstream / default.nix
blob8d247e234d2d3f30014e8a2607220027c9d55e81
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "chainstream";
10   version = "1.0.1";
12   pyproject = true;
14   nativeBuildInputs = [ setuptools ];
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-302P1BixEmkODm+qTLZwaWLktrlf9cEziQ/TIVfI07c=";
19   };
21   pythonImportsCheck = [ "chainstream" ];
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   };