python311Packages.pyleri: init at 1.4.2
This commit is contained in:
parent
1f8b5a2795
commit
0258fb2552
2 changed files with 39 additions and 0 deletions
37
pkgs/development/python-modules/pyleri/default.nix
Normal file
37
pkgs/development/python-modules/pyleri/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, unittestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyleri";
|
||||
version = "1.4.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cesbit";
|
||||
repo = "pyleri";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-52Q2iTrXFNbDzXL0FM+Gypipvo5ciNqAtZa5sKOwQRc=";
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
unittestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyleri"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module to parse SiriDB";
|
||||
homepage = "https://github.com/cesbit/pyleri";
|
||||
changelog = "https://github.com/cesbit/pyleri/releases/tag/${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -9310,6 +9310,8 @@ self: super: with self; {
|
|||
|
||||
pyld = callPackage ../development/python-modules/pyld { };
|
||||
|
||||
pyleri = callPackage ../development/python-modules/pyleri { };
|
||||
|
||||
pylev = callPackage ../development/python-modules/pylev { };
|
||||
|
||||
pylgnetcast = callPackage ../development/python-modules/pylgnetcast { };
|
||||
|
|
Loading…
Reference in a new issue