mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
pythonPackages.pyro-api: init at 0.1.1
This commit is contained in:
parent
a3ab7a3518
commit
9f2cc6f478
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 { };
|
pyroma = callPackage ../development/python-modules/pyroma { };
|
||||||
|
|
||||||
|
pyro-api = callPackage ../development/python-modules/pyro-api { };
|
||||||
|
|
||||||
pyro-ppl = callPackage ../development/python-modules/pyro-ppl { };
|
pyro-ppl = callPackage ../development/python-modules/pyro-ppl { };
|
||||||
|
|
||||||
pyroute2 = callPackage ../development/python-modules/pyroute2 { };
|
pyroute2 = callPackage ../development/python-modules/pyroute2 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user