python3Packages.syncer: init at 1.3.0

This commit is contained in:
Fabian Affolter 2021-05-23 23:57:48 +02:00
parent 06d8a6f99d
commit 2881043be7
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "syncer";
version = "1.3.0";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "miyakogi";
repo = pname;
rev = "v${version}";
sha256 = "13y8jllix1ipkcg9lxa4nxk8kj24vivxfizf4d02cdrha9dw500v";
};
# Tests require an not maintained package (xfail)
doCheck = false;
pythonImportsCheck = [ "syncer" ];
meta = with lib; {
description = "Python async to sync converter";
homepage = "https://github.com/miyakogi/syncer";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -7952,6 +7952,8 @@ in {
sympy = callPackage ../development/python-modules/sympy { };
syncer = callPackage ../development/python-modules/syncer { };
systembridge = callPackage ../development/python-modules/systembridge { };
systemd = callPackage ../development/python-modules/systemd {