about summary refs log tree commit diff
path: root/pkgs/development/python-modules/interegular/default.nix
blob: 6a005fd87ca41dc0f6c02c7566302bede39f9861 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  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 ];
  };
}