1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 regex,
6}:
7
8buildPythonPackage rec {
9 pname = "re_assert";
10 version = "1.1.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "5172dfbd2047a15dff2347735dea7e495479cc7e58841199a4a4973256b20464";
15 };
16
17 # No tests in archive
18 doCheck = false;
19
20 propagatedBuildInputs = [ regex ];
21
22 meta = {
23 description = "Show where your regex match assertion failed";
24 license = lib.licenses.mit;
25 homepage = "https://github.com/asottile/re-assert";
26 };
27}