nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchPypi, buildPythonPackage
2, traits, traitsui, configobj
3, nose, tables, pandas
4}:
5
6buildPythonPackage rec {
7 pname = "apptools";
8 version = "4.4.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "1dw6vvq7lqkj7mgn3s7r5hs937kl4mj5g7jf2qgvhdld9lsc5xbk";
13 };
14
15 propagatedBuildInputs = [ traits traitsui configobj ];
16
17 checkInputs = [
18 nose
19 tables
20 pandas
21 ];
22
23 doCheck = true;
24
25 meta = with stdenv.lib; {
26 description = "Set of packages that Enthought has found useful in creating a number of applications.";
27 homepage = https://github.com/enthought/apptools;
28 maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
29 license = licenses.bsdOriginal;
30 };
31}