Merge pull request #292774 from CertainLach/interegular-init
python3Packages.interegular: init at 0.3.3
This commit is contained in:
commit
316f61e835
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/interegular/default.nix
Normal file
24
pkgs/development/python-modules/interegular/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue