nixpkgs/pkgs/development/python-modules/etebase/default.nix
Martin Weinelt 20af712f02
python3Packages.etebase: 0.31.2 -> 0.31.5
Pin openssl_1_1, doesn't support openssl_3 yet.
2022-09-19 16:06:28 +02:00

66 lines
1.3 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, buildPythonPackage
, rustPlatform
, pkg-config
, rustfmt
, setuptools-rust
, openssl
, Security
, msgpack
}:
buildPythonPackage rec {
pname = "etebase";
version = "0.31.5";
src = fetchFromGitHub {
owner = "etesync";
repo = "etebase-py";
rev = "v${version}";
hash = "sha256-87t3toMaApnOSPBKfTGGLo2VRLqU8irFac9lg3kA1eE=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-Qg0aJ6CZaPxGneIs4o402A+fhI/nlJ9X/XdMFqkD/YY=";
};
format = "pyproject";
nativeBuildInputs = [
pkg-config
rustfmt
setuptools-rust
] ++ (with rustPlatform; [
cargoSetupHook
rust.cargo
rust.rustc
]);
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];
propagatedBuildInputs = [
msgpack
];
postPatch = ''
# Use system OpenSSL, which gets security updates.
substituteInPlace Cargo.toml \
--replace ', features = ["vendored"]' ""
'';
pythonImportsCheck = [ "etebase" ];
meta = with lib; {
broken = stdenv.isDarwin;
homepage = "https://www.etebase.com/";
description = "A Python client library for Etebase";
license = licenses.bsd3;
maintainers = with maintainers; [ _3699n ];
};
}