pythonPackages.envisage: init at 4.7.2
This commit is contained in:
parent
7800b2f71a
commit
f126f2c9e3
33
pkgs/development/python-modules/envisage/default.nix
Normal file
33
pkgs/development/python-modules/envisage/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenv, fetchPypi, buildPythonPackage
|
||||
, traits, apptools
|
||||
, ipykernel
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "envisage";
|
||||
version = "4.7.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0jb5nw0w9x97jij0hd3d7kfzcj58r1cqmplmdy56bj11dyc4wyc9";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ traits apptools ];
|
||||
|
||||
preCheck = ''
|
||||
export HOME=$PWD/HOME
|
||||
'';
|
||||
|
||||
checkInputs = [
|
||||
ipykernel
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Framework for building applications whose functionalities can be extended by adding 'plug-ins'";
|
||||
homepage = https://github.com/enthought/envisage;
|
||||
maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
|
||||
license = licenses.bsdOriginal;
|
||||
};
|
||||
}
|
@ -2569,6 +2569,8 @@ in {
|
||||
|
||||
entrypoints = callPackage ../development/python-modules/entrypoints { };
|
||||
|
||||
envisage = callPackage ../development/python-modules/envisage { };
|
||||
|
||||
enzyme = callPackage ../development/python-modules/enzyme {};
|
||||
|
||||
escapism = callPackage ../development/python-modules/escapism { };
|
||||
|
Loading…
Reference in New Issue
Block a user