python3Packages.pypck: init at 0.7.8
This commit is contained in:
parent
82425ca793
commit
8def5f630a
|
@ -0,0 +1,45 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytest-asyncio
|
||||||
|
, pytest-cov
|
||||||
|
, pytest-timeout
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, stdenv
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pypck";
|
||||||
|
version = "0.7.8";
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "alengwenus";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "06yqyqpzpypid27z31prvsp7nzpjqzn7gjlfqwjhhxl8fdgh8hkr";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest-asyncio
|
||||||
|
pytest-cov
|
||||||
|
pytest-timeout
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
disabledTests = lib.optionals stdenv.isDarwin [
|
||||||
|
"test_connection_lost"
|
||||||
|
];
|
||||||
|
|
||||||
|
__darwinAllowLocalNetworking = true;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "pypck" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "LCN-PCK library written in Python";
|
||||||
|
homepage = "https://github.com/alengwenus/pypck";
|
||||||
|
license = with licenses; [ epl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5565,6 +5565,8 @@ in {
|
||||||
|
|
||||||
pypcap = callPackage ../development/python-modules/pypcap { };
|
pypcap = callPackage ../development/python-modules/pypcap { };
|
||||||
|
|
||||||
|
pypck = callPackage ../development/python-modules/pypck { };
|
||||||
|
|
||||||
pypdf2 = callPackage ../development/python-modules/pypdf2 { };
|
pypdf2 = callPackage ../development/python-modules/pypdf2 { };
|
||||||
|
|
||||||
pyPdf = callPackage ../development/python-modules/pypdf { };
|
pyPdf = callPackage ../development/python-modules/pypdf { };
|
||||||
|
|
Loading…
Reference in New Issue