nixpkgs/pkgs/development/python-modules/amply/default.nix

38 lines
746 B
Nix
Raw Normal View History

2020-09-13 12:21:56 +00:00
{ stdenv
, fetchPypi
, buildPythonPackage
, setuptools_scm
, docutils
, pyparsing
}:
buildPythonPackage rec {
pname = "amply";
2020-10-25 09:06:49 +00:00
version = "0.1.4";
2020-09-13 12:21:56 +00:00
src = fetchPypi {
inherit pname version;
2020-10-25 09:06:49 +00:00
sha256 = "cb12dcb49d16b168c02be128a1527ecde50211e4bd94af76ff4e67707f5a2d38";
2020-09-13 12:21:56 +00:00
};
buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [
docutils
pyparsing
];
checkPhase = ''
python tests/test_amply.py
'';
pythonImportsCheck = [ "amply" ];
meta = with stdenv.lib; {
homepage = "https://github.com/willu47/amply";
description = ''
Allows you to load and manipulate AMPL/GLPK data as Python data structures
'';
maintainers = with maintainers; [ ris ];
license = licenses.epl10;
};
}