3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/apptools/default.nix

33 lines
729 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage
, configobj, six, traitsui
2019-01-31 21:36:33 +00:00
, nose, tables, pandas
}:
buildPythonPackage rec {
pname = "apptools";
version = "4.5.0";
2019-01-31 21:36:33 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "10h52ibhr2aw076pivqxiajr9rpcr1mancg6xlpxzckcm3if02i6";
2019-01-31 21:36:33 +00:00
};
propagatedBuildInputs = [ configobj six traitsui ];
2019-01-31 21:36:33 +00:00
checkInputs = [
nose
tables
pandas
];
doCheck = true;
checkPhase = ''HOME=$TMP nosetests'';
2019-01-31 21:36:33 +00:00
meta = with lib; {
2019-01-31 21:36:33 +00:00
description = "Set of packages that Enthought has found useful in creating a number of applications.";
homepage = "https://github.com/enthought/apptools";
maintainers = with maintainers; [ knedlsepp ];
2019-01-31 21:36:33 +00:00
license = licenses.bsdOriginal;
};
}