blob: e09f6f82ded6a08f63e90d34a164372a47ddc0ce (
plain)
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
32
33
34
35
36
37
38
|
{
lib,
fetchPypi,
buildPythonPackage,
setuptools-scm,
docutils,
pyparsing,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "amply";
version = "0.1.6";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-YUIRA8z44QZnFxFf55F2ENgx1VHGjTGhEIdqW2x4rqQ=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
docutils
pyparsing
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "amply" ];
meta = {
homepage = "https://github.com/willu47/amply";
description = ''
Allows you to load and manipulate AMPL/GLPK data as Python data structures
'';
maintainers = with lib.maintainers; [ ris ];
license = lib.licenses.epl10;
};
}
|