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

43 lines
927 B
Nix
Raw Normal View History

{ lib
, fetchPypi
, isPy27
, buildPythonPackage
, traits
, apptools
, pytestCheckHook
, ipython
, setuptools
2019-01-31 21:17:30 +00:00
}:
buildPythonPackage rec {
pname = "envisage";
version = "6.0.1";
disabled = isPy27;
2019-01-31 21:17:30 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "8864c29aa344f7ac26eeb94788798f2d0cc791dcf95c632da8d79ebc580e114c";
2019-01-31 21:17:30 +00:00
};
# for the optional dependency ipykernel, only versions < 6 are
# supported, so it's not included in the tests, and not propagated
propagatedBuildInputs = [ traits apptools setuptools ];
2019-01-31 21:17:30 +00:00
preCheck = ''
export HOME=$PWD/HOME
'';
checkInputs = [
ipython
pytestCheckHook
2019-01-31 21:17:30 +00:00
];
meta = with lib; {
2019-01-31 21:17:30 +00:00
description = "Framework for building applications whose functionalities can be extended by adding 'plug-ins'";
homepage = "https://github.com/enthought/envisage";
maintainers = with lib.maintainers; [ knedlsepp ];
2019-01-31 21:17:30 +00:00
license = licenses.bsdOriginal;
};
}