Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / amply / default.nix
blob235a697d2af4a122edc539d7ffe59b4a977492b0
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , setuptools-scm
5 , docutils
6 , pyparsing
7 , pytestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "amply";
12   version = "0.1.6";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-YUIRA8z44QZnFxFf55F2ENgx1VHGjTGhEIdqW2x4rqQ=";
17   };
19   nativeBuildInputs = [ setuptools-scm ];
20   propagatedBuildInputs = [
21     docutils
22     pyparsing
23   ];
24   nativeCheckInputs = [ pytestCheckHook ];
26   pythonImportsCheck = [ "amply" ];
28   meta = with lib; {
29     homepage = "https://github.com/willu47/amply";
30     description = ''
31       Allows you to load and manipulate AMPL/GLPK data as Python data structures
32     '';
33     maintainers = with maintainers; [ ris ];
34     license = licenses.epl10;
35   };