WIP: package evolution-decsync
This commit is contained in:
parent
82ccb8fb24
commit
2d6fa679c6
4 changed files with 170 additions and 0 deletions
21
nix/pkgs/libdecsync-python/default.nix
Normal file
21
nix/pkgs/libdecsync-python/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue