Skip to content

Commit

Permalink
pythonPackages.pyro-api: init at 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
georgewhewell authored and Jonathan Ringer committed Nov 23, 2020
1 parent a3ab7a3 commit 9f2cc6f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/development/python-modules/pyro-api/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 9f2cc6f

Please sign in to comment.