summary refs log tree commit diff
path: root/pkgs/development/python-modules/apptools/default.nix
blob: 186bda86842eaafcf8b219eeb17d6989b75cf7c8 (plain) (blame)
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
{ stdenv, fetchPypi, buildPythonPackage
, traits, traitsui, configobj
, nose, tables, pandas
}:

buildPythonPackage rec {
  pname = "apptools";
  version = "4.4.0";

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

  propagatedBuildInputs = [ traits traitsui configobj ];

  checkInputs = [
    nose
    tables
    pandas
  ];

  doCheck = true;

  meta = with stdenv.lib; {
    description = "Set of packages that Enthought has found useful in creating a number of applications.";
    homepage = https://github.com/enthought/apptools;
    maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
    license = licenses.bsdOriginal;
  };
}