depot/third_party/nixpkgs/pkgs/development/python-modules/flashtext/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

25 lines
617 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "flashtext";
version = "2.7";
format = "setuptools";
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 = "https://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 ];
};
}