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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
729 B
Nix
Raw Normal View History

{ lib
2020-09-13 12:21:56 +00:00
, fetchPypi
, buildPythonPackage
, setuptools-scm
2020-09-13 12:21:56 +00:00
, docutils
, pyparsing
2020-11-05 23:19:14 +00:00
, pytestCheckHook
2020-09-13 12:21:56 +00:00
}:
buildPythonPackage rec {
pname = "amply";
version = "0.1.5";
2020-09-13 12:21:56 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-rXF7SQtrcFWQn6oZXoKkQytwb4+VhUBQFy9Ckx5HhCY=";
2020-09-13 12:21:56 +00:00
};
nativeBuildInputs = [ setuptools-scm ];
2020-09-13 12:21:56 +00:00
propagatedBuildInputs = [
docutils
pyparsing
];
2020-11-05 23:19:14 +00:00
checkInputs = [ pytestCheckHook ];
2020-09-13 12:21:56 +00:00
pythonImportsCheck = [ "amply" ];
meta = with lib; {
2020-09-13 12:21:56 +00:00
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;
};
}