nixpkgs/pkgs/development/python-modules/apptools/default.nix
2020-04-09 10:01:58 -07:00

33 lines
729 B
Nix

{ lib, fetchPypi, buildPythonPackage
, configobj, six, traitsui
, nose, tables, pandas
}:
buildPythonPackage rec {
pname = "apptools";
version = "4.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "10h52ibhr2aw076pivqxiajr9rpcr1mancg6xlpxzckcm3if02i6";
};
propagatedBuildInputs = [ configobj six traitsui ];
checkInputs = [
nose
tables
pandas
];
doCheck = true;
checkPhase = ''HOME=$TMP nosetests'';
meta = with lib; {
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 ];
license = licenses.bsdOriginal;
};
}