mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
62 lines
1.0 KiB
Nix
62 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, aiodns
|
|
, aiohttp
|
|
, fetchPypi
|
|
, gnupg
|
|
, pyasn1
|
|
, pyasn1-modules
|
|
, pytestCheckHook
|
|
, substituteAll
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "slixmpp";
|
|
version = "1.8.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-QG8fS6t+dXPdVZpEECfT3jPRe7o1S88g3caq+6JyKGs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiodns
|
|
aiohttp
|
|
pyasn1
|
|
pyasn1-modules
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./hardcode-gnupg-path.patch;
|
|
inherit gnupg;
|
|
})
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Exclude live tests
|
|
"tests/live_test.py"
|
|
"tests/test_xep_0454.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"slixmpp"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for XMPP";
|
|
homepage = "https://slixmpp.readthedocs.io/";
|
|
changelog = "https://lab.louiz.org/poezio/slixmpp/-/tags/slix-${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|