nixpkgs/pkgs/development/python-modules/apptools/default.nix

40 lines
1.0 KiB
Nix
Raw Normal View History

2020-04-13 17:32:37 +01:00
{ lib, fetchPypi, buildPythonPackage, fetchpatch
, 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
};
2020-04-13 17:32:37 +01:00
# PyTables issue; should be merged in next post-4.5.0 release (#117)
patches = [ (fetchpatch {
url = "https://github.com/enthought/apptools/commit/3734289d1a0ebd8513fa67f75288add31ed0113c.patch";
sha256 = "001012q1ib5cbib3nq1alh9ckzj588bfrywr8brkd1f6y1pgvngk";
})
];
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;
};
}