depot/third_party/nixpkgs/pkgs/development/python-modules/envisage/default.nix
Default email 456cea78a8 Project import generated by Copybara.
GitOrigin-RevId: 88226ea038e538e09c272a7c56ba73c3f5eed57f
2021-08-25 10:27:29 +02:00

34 lines
805 B
Nix

{ lib, fetchPypi, isPy27
, buildPythonPackage
, traits, apptools, pytestCheckHook
, ipykernel, ipython, setuptools
}:
buildPythonPackage rec {
pname = "envisage";
version = "6.0.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "8864c29aa344f7ac26eeb94788798f2d0cc791dcf95c632da8d79ebc580e114c";
};
propagatedBuildInputs = [ traits apptools setuptools ];
preCheck = ''
export HOME=$PWD/HOME
'';
checkInputs = [
ipykernel ipython pytestCheckHook
];
meta = with lib; {
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 ];
license = licenses.bsdOriginal;
};
}