mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 22:33:43 +00:00
onigurumacffi: init at v1.3.0
This commit is contained in:
parent
e26617d268
commit
d52b7353cc
24
pkgs/development/python-modules/onigurumacffi/default.nix
Normal file
24
pkgs/development/python-modules/onigurumacffi/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, python3Packages, fetchPypi, oniguruma }:
|
||||
python3Packages.buildPythonPackage rec {
|
||||
pname = "onigurumacffi";
|
||||
version = "1.3.0";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-d0XNxWCWrOyIofOwhmCiKwnGWe040/WdtsHK12qXa+8=";
|
||||
};
|
||||
|
||||
buildInputs = with python3Packages; [
|
||||
oniguruma
|
||||
setuptools
|
||||
cffi
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python cffi bindings for the oniguruma regex engine";
|
||||
homepage = "https://github.com/asottile/onigurumacffi";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ melkor333 ];
|
||||
};
|
||||
}
|
@ -8937,6 +8937,8 @@ self: super: with self; {
|
||||
|
||||
onetimepass = callPackage ../development/python-modules/onetimepass { };
|
||||
|
||||
onigurumacffi = callPackage ../development/python-modules/onigurumacffi { };
|
||||
|
||||
onkyo-eiscp = callPackage ../development/python-modules/onkyo-eiscp { };
|
||||
|
||||
online-judge-api-client = callPackage ../development/python-modules/online-judge-api-client { };
|
||||
|
Loading…
Reference in New Issue
Block a user