aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/amply/default.nix
blob: e0e9100f7924a3e24757267ec32b5e0d985d9b8c (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
{ stdenv
, fetchPypi
, buildPythonPackage
, setuptools_scm
, docutils
, pyparsing
}:

buildPythonPackage rec {
  pname = "amply";
  version = "0.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1j2dqdz1y1nbyw33qq89v0f5rkmqfbga72d9hax909vpcapm6pbf";
  };

  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;
  };
}