lol

pythonPackages.tubes: init at 0.2.0

+31
+29
pkgs/development/python-modules/tubes/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, python 2 + , characteristic, six, twisted 3 + }: 4 + 5 + buildPythonPackage rec { 6 + pname = "tubes"; 7 + version = "0.2.0"; 8 + 9 + src = fetchPypi { 10 + pname = "Tubes"; 11 + inherit version; 12 + sha256 = "0sg1gg2002h1xsgxigznr1zk1skwmhss72dzk6iysb9k9kdgymcd"; 13 + }; 14 + 15 + propagatedBuildInputs = [ characteristic six twisted ]; 16 + 17 + checkPhase = '' 18 + ${python.interpreter} -m twisted.trial -j $NIX_BUILD_CORES tubes 19 + ''; 20 + 21 + pythonImportsCheck = [ "tubes" ]; 22 + 23 + meta = with lib; { 24 + description = "a data-processing and flow-control engine for event-driven programs"; 25 + homepage = "https://github.com/twisted/tubes"; 26 + license = licenses.mit; 27 + maintainers = with maintainers; [ exarkun ]; 28 + }; 29 + }
+2
pkgs/top-level/python-packages.nix
··· 8920 8920 8921 8921 ttp = callPackage ../development/python-modules/ttp { }; 8922 8922 8923 + tubes = callPackage ../development/python-modules/tubes { }; 8924 + 8923 8925 tunigo = callPackage ../development/python-modules/tunigo { }; 8924 8926 8925 8927 tubeup = callPackage ../development/python-modules/tubeup { };