python3Packages.re-assert: init at 1.1.0
This commit is contained in:
parent
7d73203369
commit
98996d05de
|
@ -0,0 +1,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";
|
||||
};
|
||||
}
|
|
@ -6223,6 +6223,8 @@ in {
|
|||
|
||||
rdflib-jsonld = callPackage ../development/python-modules/rdflib-jsonld { };
|
||||
|
||||
re-assert = callPackage ../development/python-modules/re-assert { };
|
||||
|
||||
readchar = callPackage ../development/python-modules/readchar { };
|
||||
|
||||
readme = callPackage ../development/python-modules/readme { };
|
||||
|
|
Loading…
Reference in New Issue