Merge pull request #292774 from CertainLach/interegular-init

python3Packages.interegular: init at 0.3.3
This commit is contained in:
Yt 2024-03-02 13:28:40 +00:00 committed by GitHub
commit 316f61e835
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "interegular";
version = "0.3.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-2baXshs0iEcROZug8DdpFLgYmc5nADJIbQ0Eg0SnZgA=";
};
pythonImportsCheck = [
"interegular"
];
meta = with lib; {
description = "A library to check a subset of python regexes for intersections";
homepage = "https://github.com/MegaIng/interegular";
license = licenses.mit;
maintainers = with maintainers; [ lach ];
};
}

View file

@ -5666,6 +5666,8 @@ self: super: with self; {
intensity-normalization = callPackage ../development/python-modules/intensity-normalization { };
interegular = callPackage ../development/python-modules/interegular { };
interface-meta = callPackage ../development/python-modules/interface-meta { };
internetarchive = callPackage ../development/python-modules/internetarchive { };