python3Packages.syncer: init at 1.3.0
This commit is contained in:
parent
06d8a6f99d
commit
2881043be7
30
pkgs/development/python-modules/syncer/default.nix
Normal file
30
pkgs/development/python-modules/syncer/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user