python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / syncer / default.nix
blobaed4172d9a3f4ca856d9fcbdc4cbd4a9ef1cee37
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6 }:
8 buildPythonPackage rec {
9   pname = "syncer";
10   version = "2.0.3";
11   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchFromGitHub {
15     owner = "miyakogi";
16     repo = pname;
17     rev = "v${version}";
18     sha256 = "sha256-3EYWy6LuZ/3i+9d0QaclCqWMMw5O3WzhTY3LUL5iMso=";
19   };
21   # Tests require an not maintained package (xfail)
22   doCheck = false;
24   pythonImportsCheck = [ "syncer" ];
26   meta = with lib; {
27     description = "Python async to sync converter";
28     homepage = "https://github.com/miyakogi/syncer";
29     license = licenses.mit;
30     maintainers = with maintainers; [ fab ];
31   };