mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 16:14:50 +00:00
python312Packages.sleekxmppfs: init at 1.4.1
This commit is contained in:
parent
44e19a2f92
commit
81d2ab48b2
42
pkgs/development/python-modules/sleekxmppfs/default.nix
Normal file
42
pkgs/development/python-modules/sleekxmppfs/default.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
dnspython,
|
||||
pyasn1,
|
||||
pyasn1-modules,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sleekxmppfs";
|
||||
version = "1.4.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "aszymanik";
|
||||
repo = "SleekXMPP";
|
||||
rev = "refs/tags/sleek-${version}";
|
||||
hash = "sha256-E2S4fMk5dRr8g42iOYmKOknHX7NS6EZ/LAZKc1v3dPg=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
dnspython
|
||||
pyasn1
|
||||
pyasn1-modules
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "sleekxmppfs" ];
|
||||
|
||||
# tests weren't adapted for the fork
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "A fork of SleekXMPP with TLS cert validation disabled, intended only to be used with the sucks project";
|
||||
license = lib.licenses.mit;
|
||||
homepage = "https://github.com/aszymanik/SleekXMPP";
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -14452,6 +14452,8 @@ self: super: with self; {
|
||||
|
||||
sleekxmpp = callPackage ../development/python-modules/sleekxmpp { };
|
||||
|
||||
sleekxmppfs = callPackage ../development/python-modules/sleekxmppfs { };
|
||||
|
||||
sleepyq = callPackage ../development/python-modules/sleepyq { };
|
||||
|
||||
sleqp = toPythonModule (pkgs.sleqp.override { pythonSupport = true; python3Packages = self; });
|
||||
|
Loading…
Reference in New Issue
Block a user