0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
32 lines
626 B
Nix
32 lines
626 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysoma";
|
|
version = "0.0.13";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-1bS9zafuqxwcuqpM/AA3ZjNbFpxBNXtoHYFsQOWmLXQ=";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|