depot/third_party/nixpkgs/pkgs/development/python-modules/sre-yield/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

35 lines
699 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "sre-yield";
version = "1.2";
format = "setuptools";
src = fetchPypi {
pname = "sre_yield";
inherit version;
hash = "sha256-6U8aKjy6//4dzRXB1U5AGhUX4FKqZMfTFk+I3HYde4o=";
};
nativeBuildInputs = [
setuptools
];
doCheck = true;
nativeCheckInputs = [
unittestCheckHook
];
meta = with lib; {
description = "Python library to efficiently generate all values that can match a given regular expression";
homepage = "https://github.com/sre-yield/sre-yield";
license = licenses.asl20;
maintainers = with maintainers; [ danc86 ];
};
}