aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/re-assert/default.nix
blob: 9cf32d79802e2a3222dbb93636617b3b1d0c532e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib
, buildPythonPackage
, fetchPypi
, regex
}:

buildPythonPackage rec {
  pname = "re_assert";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5172dfbd2047a15dff2347735dea7e495479cc7e58841199a4a4973256b20464";
  };

  # No tests in archive
  doCheck = false;

  propagatedBuildInputs = [
    regex
  ];

  meta = {
    description = "Show where your regex match assertion failed";
    license = lib.licenses.mit;
    homepage = "https://github.com/asottile/re-assert";
  };
}