mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
65671395da
Changelog: https://github.com/etesync/etebase-py/releases/tag/v0.31.2 (Fixes crashes with Python 3.9.)
65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, rustPlatform
|
|
, pkg-config
|
|
, rustfmt
|
|
, setuptools-rust
|
|
, openssl
|
|
, Security
|
|
, msgpack
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "etebase";
|
|
version = "0.31.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "etesync";
|
|
repo = "etebase-py";
|
|
rev = "v${version}";
|
|
hash = "sha256-enGmfXW8eV6FgdHfJqXr1orAsGbxDz9xUY6T706sf5U=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-4eJvFf6aY+DYkrYgam5Ok9941PX4uQOmtRznEY0+1TE=";
|
|
};
|
|
|
|
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; {
|
|
homepage = "https://www.etebase.com/";
|
|
description = "A Python client library for Etebase";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ _3699n ];
|
|
};
|
|
}
|