blob: c27991b8ca09cb8c324d70adf9dd68dd01822f87 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
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 ];
};
}
|