pythonPackages.pyro-api: init at 0.1.1
This commit is contained in:
parent
a3ab7a3518
commit
9f2cc6f478
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/pyro-api/default.nix
Normal file
23
pkgs/development/python-modules/pyro-api/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue