python3Packages.numtraits: remove

This package has long been replaced by https://github.com/jupyter-widgets/traittypes
This commit is contained in:
Robert T. McGibbon 2021-03-24 10:20:26 -04:00 committed by Frederik Rietdijk
parent 3cd3e3167c
commit 66d2e53a33
2 changed files with 0 additions and 34 deletions

View File

@ -1,32 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, six
, numpy
, traitlets
}:
buildPythonPackage rec {
pname = "numtraits";
version = "0.2";
src = fetchPypi {
inherit pname version;
sha256 = "2fca9a6c9334f7358ef1a3e2e64ccaa6a479fc99fc096910e0d5fbe8edcdfd7e";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ six numpy traitlets];
checkPhase = ''
py.test
'';
meta = {
description = "Numerical traits for Python objects";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fridh ];
homepage = "https://github.com/astrofrog/numtraits";
};
}

View File

@ -4712,8 +4712,6 @@ in {
numpy-stl = callPackage ../development/python-modules/numpy-stl { };
numtraits = callPackage ../development/python-modules/numtraits { };
nunavut = callPackage ../development/python-modules/nunavut { };
nvchecker = callPackage ../development/python-modules/nvchecker { };