python2Packages.apptools: 4.4.0 -> 4.5.0

This commit is contained in:
Ben Darwin 2020-04-09 12:22:12 -04:00 committed by Jon
parent 136f879ca6
commit e67d840931

View File

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