pythonPackages.text-unidecode: init at 1.1
This commit is contained in:
parent
d3a347547c
commit
35ee24f966
23
pkgs/development/python-modules/text-unidecode/default.nix
Normal file
23
pkgs/development/python-modules/text-unidecode/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "text-unidecode";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1l081m1w8ibbx684ca71ibdy68iwqsivy6rf6yqvysdclzldbbyh";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "The most basic Text::Unidecode port";
|
||||
homepage = https://github.com/kmike/text-unidecode;
|
||||
license = licenses.artistic1;
|
||||
};
|
||||
}
|
@ -15973,6 +15973,8 @@ in {
|
||||
|
||||
stevedore = callPackage ../development/python-modules/stevedore {};
|
||||
|
||||
text-unidecode = callPackage ../development/python-modules/text-unidecode { };
|
||||
|
||||
Theano = callPackage ../development/python-modules/Theano rec {
|
||||
cudaSupport = pkgs.config.cudaSupport or false;
|
||||
cudnnSupport = cudaSupport;
|
||||
|
Loading…
Reference in New Issue
Block a user