My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/re-assert/default.nix

28 lines
515 B

{ 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";
};
}