mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
python3Packages.brelpy: init at 0.0.3
This commit is contained in:
parent
cf66057e81
commit
ba25948253
38
pkgs/development/python-modules/brelpy/default.nix
Normal file
38
pkgs/development/python-modules/brelpy/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pycryptodome
|
||||||
|
, PyGithub
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "brelpy";
|
||||||
|
version = "0.0.3";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-MYWSKYd7emHZfY+W/UweQtTg62GSUMybpecL9BR8dhg=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
pycryptodome
|
||||||
|
];
|
||||||
|
|
||||||
|
# Source not tagged and PyPI releases don't contain tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"brelpy"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python to communicate with the Brel hubs";
|
||||||
|
homepage = "https://gitlab.com/rogiervandergeer/brelpy";
|
||||||
|
license = licenses.agpl3Only;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -1292,6 +1292,8 @@ in {
|
|||||||
|
|
||||||
breezy = callPackage ../development/python-modules/breezy { };
|
breezy = callPackage ../development/python-modules/breezy { };
|
||||||
|
|
||||||
|
brelpy = callPackage ../development/python-modules/brelpy { };
|
||||||
|
|
||||||
broadlink = callPackage ../development/python-modules/broadlink { };
|
broadlink = callPackage ../development/python-modules/broadlink { };
|
||||||
|
|
||||||
brother = callPackage ../development/python-modules/brother { };
|
brother = callPackage ../development/python-modules/brother { };
|
||||||
|
Loading…
Reference in New Issue
Block a user