depot/third_party/nixpkgs/pkgs/development/python-modules/re-assert/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

27 lines
515 B
Nix

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