My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/flashtext/default.nix

24 lines
592 B

{ 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 = "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 ];
};
}