summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorgeorgewhewell <georgerw@gmail.com>2020-11-19 18:38:33 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-23 06:51:08 -0800
commit9f2cc6f478aa7ad57450fee9fd1bc84535b3b6bd (patch)
tree4d3ba693e1a9a1674faa42b45cf71547ed448f41 /pkgs/development
parenta3ab7a351893814f39c75d98a81208f2044f059d (diff)
pythonPackages.pyro-api: init at 0.1.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/pyro-api/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyro-api/default.nix b/pkgs/development/python-modules/pyro-api/default.nix
new file mode 100644
index 000000000000..78804941532a
--- /dev/null
+++ b/pkgs/development/python-modules/pyro-api/default.nix
@@ -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 ];
+ };
+}