Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / tubes / default.nix
blob28d7b7bc4be22c725c1a14bb25b005aee711198f
1 { lib, buildPythonPackage, fetchPypi, python
2 , characteristic, six, twisted
3 }:
5 buildPythonPackage rec {
6   pname = "tubes";
7   version = "0.2.1";
8   format = "setuptools";
10   src = fetchPypi {
11     pname = "Tubes";
12     inherit version;
13     hash = "sha256-WbkZfy+m9/xrwygd5VeXrccpu3XJxhO09tbEFZnw14s=";
14   };
16   propagatedBuildInputs = [ characteristic six twisted ];
18   checkPhase = ''
19     ${python.interpreter} -m twisted.trial -j $NIX_BUILD_CORES tubes
20   '';
22   pythonImportsCheck = [ "tubes" ];
24   meta = with lib; {
25     description = "a data-processing and flow-control engine for event-driven programs";
26     homepage    = "https://github.com/twisted/tubes";
27     license     = licenses.mit;
28     maintainers = with maintainers; [ exarkun ];
29   };