Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / syncer / default.nix
blobcb86cd2e7ceeaf07e702a1e04b96cce4eb2a2687
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "syncer";
9   version = "2.0.3";
10   format = "setuptools";
11   disabled = pythonOlder "3.7";
13   src = fetchFromGitHub {
14     owner = "miyakogi";
15     repo = pname;
16     rev = "v${version}";
17     sha256 = "sha256-3EYWy6LuZ/3i+9d0QaclCqWMMw5O3WzhTY3LUL5iMso=";
18   };
20   # Tests require an not maintained package (xfail)
21   doCheck = false;
23   pythonImportsCheck = [ "syncer" ];
25   meta = with lib; {
26     description = "Python async to sync converter";
27     homepage = "https://github.com/miyakogi/syncer";
28     license = licenses.mit;
29     maintainers = with maintainers; [ fab ];
30   };