python3Packages.pysoma: init at 0.0.10

gstqt5
Fabian Affolter 2021-01-15 15:40:00 +01:00 committed by Jonathan Ringer
parent f6a9596c4a
commit 893f641504
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pysoma";
version = "0.0.10";
src = fetchPypi {
inherit pname version;
sha256 = "1q8afi6m3mfh0rfpghyvx6z76kgrpkbnlqzbs4p8ax13n0fnlkdi";
};
# Project has no test
doCheck = false;
pythonImportsCheck = [ "api" ];
meta = with lib; {
description = "Python wrapper for the HTTP API provided by SOMA Connect";
homepage = "https://pypi.org/project/pysoma";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -5833,6 +5833,8 @@ in {
pysolr = callPackage ../development/python-modules/pysolr { };
pysoma = callPackage ../development/python-modules/pysoma { };
py-sonic = callPackage ../development/python-modules/py-sonic { };
pysonos = callPackage ../development/python-modules/pysonos { };