mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
bf995e3641
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
29 lines
597 B
Nix
29 lines
597 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.1.2";
|
|
format = "setuptools";
|
|
pname = "pyro-api";
|
|
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
sha256 = "a1b900d9580aa1c2fab3b123ab7ff33413744da7c5f440bd4aadc4d40d14d920";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|