Merge pull request #142563 from aanderse/flashtext
pythonPackages.flashtext: init at 2.7
This commit is contained in:
commit
59b38f8b45
24
pkgs/development/python-modules/flashtext/default.nix
Normal file
24
pkgs/development/python-modules/flashtext/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "flashtext";
|
||||
version = "2.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1kq5idfp9skqkjdcld40igxn2yqjly8jpmxawkp0skwxw29jpgm1";
|
||||
};
|
||||
|
||||
# json files that tests look for don't exist in the pypi dist
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://github.com/vi3k6i5/flashtext";
|
||||
description = "Python package to replace keywords in sentences or extract keywords from sentences";
|
||||
maintainers = with maintainers; [ aanderse ];
|
||||
license = with licenses; [ mit ];
|
||||
};
|
||||
}
|
@ -2699,6 +2699,8 @@ in {
|
||||
|
||||
flammkuchen = callPackage ../development/python-modules/flammkuchen { };
|
||||
|
||||
flashtext = callPackage ../development/python-modules/flashtext { };
|
||||
|
||||
flask-admin = callPackage ../development/python-modules/flask-admin { };
|
||||
|
||||
flask-api = callPackage ../development/python-modules/flask-api { };
|
||||
|
Loading…
Reference in New Issue
Block a user