WIP: package evolution-decsync

This commit is contained in:
steveej 2022-11-10 16:29:37 +01:00
parent 82ccb8fb24
commit 2d6fa679c6
4 changed files with 170 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ lib, python3Packages, libdecsync }:
python3Packages.buildPythonPackage rec {
pname = "libdecsync";
version = "2.2.1";
src = python3Packages.fetchPypi {
inherit pname version;
hash = "sha256-Mukjzjumv9VL+A0maU0K/SliWrgeRjAeiEdN5a83G0I=";
};
propagatedBuildInputs = [ libdecsync ];
meta = with lib; {
description =
"libdecsync is a Python3 wrapper around libdecsync for synchronizing using DecSync";
homepage = "https://github.com/39aldo39/libdecsync-bindings-python3";
license = licenses.gpl2Only;
maintainers = with maintainers; [ ethancedwards8 ];
platforms = platforms.linux;
};
}