mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
python3Packages.brother: init at 0.1.14
This commit is contained in:
parent
786d9a39ac
commit
bee771f70d
2 changed files with 38 additions and 0 deletions
36
pkgs/development/python-modules/brother/default.nix
Normal file
36
pkgs/development/python-modules/brother/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
|
||||
, pysnmp
|
||||
, asynctest, pytestcov, pytestrunner, pytest-asyncio, pytest-trio, pytest-tornasync }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "brother";
|
||||
version = "0.1.14";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bieniu";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "11pkr30bxrzgbz6bi42dyhav6qhr7rz9fb6a13297g7wa77jn4r4";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pysnmp
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
asynctest
|
||||
pytestcov
|
||||
pytestrunner
|
||||
pytest-asyncio
|
||||
pytest-trio
|
||||
pytest-tornasync
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python wrapper for getting data from Brother laser and inkjet printers via SNMP.";
|
||||
homepage = "https://github.com/bieniu/brother";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
|
@ -543,6 +543,8 @@ in {
|
|||
|
||||
breezy = callPackage ../development/python-modules/breezy { };
|
||||
|
||||
brother = callPackage ../development/python-modules/brother { };
|
||||
|
||||
build = callPackage ../development/python-modules/build { };
|
||||
|
||||
ciso8601 = callPackage ../development/python-modules/ciso8601 { };
|
||||
|
|
Loading…
Reference in a new issue