pythonPackages.pyro-api: init at 0.1.1

This commit is contained in:
georgewhewell 2020-11-19 18:38:33 +00:00 committed by Jonathan Ringer
parent a3ab7a3518
commit 9f2cc6f478
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
version = "0.1.1";
pname = "pyro-api";
src = fetchPypi {
inherit version pname;
sha256 = "0rhd7p61pf2vvflbdixp7sygblvvl9qbqavxj27910lr79vl4fdz";
};
pythonImportsCheck = [ "pyroapi" ];
# tests require pyro-ppl which depends on this package
doCheck = false;
meta = {
description = "Generic API for dispatch to Pyro backends.";
homepage = "http://pyro.ai";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ georgewhewell ];
};
}

View file

@ -5460,6 +5460,8 @@ in {
pyroma = callPackage ../development/python-modules/pyroma { };
pyro-api = callPackage ../development/python-modules/pyro-api { };
pyro-ppl = callPackage ../development/python-modules/pyro-ppl { };
pyroute2 = callPackage ../development/python-modules/pyroute2 { };