treewide: remove @sdll from maintainers

sdll github handle returns 404. Sasha agreed to remove @sdll
maintainer entry.
main
Sergei Trofimovich 3 years ago
parent e89c396d66
commit 3ec1a47f2e
  1. 6
      maintainers/maintainer-list.nix
  2. 6
      pkgs/development/python-modules/cymem/default.nix
  3. 2
      pkgs/development/python-modules/ftfy/default.nix
  4. 2
      pkgs/development/python-modules/murmurhash/default.nix
  5. 10
      pkgs/development/python-modules/plac/default.nix
  6. 10
      pkgs/development/python-modules/preshed/default.nix
  7. 2
      pkgs/development/python-modules/spacy/default.nix
  8. 2
      pkgs/development/python-modules/thinc/default.nix

@ -9862,12 +9862,6 @@
githubId = 11613056;
name = "Scott Dier";
};
sdll = {
email = "sasha.delly@gmail.com";
github = "sdll";
githubId = 17913919;
name = "Sasha Illarionov";
};
SeanZicari = {
email = "sean.zicari@gmail.com";
github = "SeanZicari";

@ -17,7 +17,7 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
cython
cython
];
prePatch = ''
@ -34,6 +34,6 @@ buildPythonPackage rec {
description = "Cython memory pool for RAII-style memory management";
homepage = "https://github.com/explosion/cymem";
license = licenses.mit;
maintainers = with maintainers; [ sdll ];
};
maintainers = with maintainers; [ ];
};
}

@ -33,6 +33,6 @@ buildPythonPackage rec {
description = "Given Unicode text, make its representation consistent and possibly less broken";
homepage = "https://github.com/LuminosoInsight/python-ftfy";
license = licenses.mit;
maintainers = with maintainers; [ sdll aborsu ];
maintainers = with maintainers; [ aborsu ];
};
}

@ -32,6 +32,6 @@ buildPythonPackage rec {
description = "Cython bindings for MurmurHash2";
homepage = "https://github.com/explosion/murmurhash";
license = licenses.mit;
maintainers = with maintainers; [ aborsu sdll ];
maintainers = with maintainers; [ aborsu ];
};
}

@ -13,14 +13,14 @@ buildPythonPackage rec {
};
checkPhase = ''
cd doc
${python.interpreter} -m unittest discover -p "*test_plac*"
'';
cd doc
${python.interpreter} -m unittest discover -p "*test_plac*"
'';
meta = with lib; {
description = "Parsing the Command Line the Easy Way";
homepage = "https://github.com/micheles/plac";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ sdll ];
};
maintainers = with maintainers; [ ];
};
}

@ -17,9 +17,9 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
cython
cymem
murmurhash
cython
cymem
murmurhash
];
checkInputs = [
@ -34,6 +34,6 @@ buildPythonPackage rec {
description = "Cython hash tables that assume keys are pre-hashed";
homepage = "https://github.com/explosion/preshed";
license = licenses.mit;
maintainers = with maintainers; [ sdll ];
};
maintainers = with maintainers; [ ];
};
}

@ -78,6 +78,6 @@ buildPythonPackage rec {
description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython";
homepage = "https://github.com/explosion/spaCy";
license = licenses.mit;
maintainers = with maintainers; [ sdll ];
maintainers = with maintainers; [ ];
};
}

@ -78,6 +78,6 @@ buildPythonPackage rec {
description = "Practical Machine Learning for NLP in Python";
homepage = "https://github.com/explosion/thinc";
license = licenses.mit;
maintainers = with maintainers; [ aborsu sdll ];
maintainers = with maintainers; [ aborsu ];
};
}

Loading…
Cancel
Save