about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyxeoma/default.nix
blob: 2036440a4699b46eee1972c1202d52bc074887e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "pyxeoma";
  version = "1.4.2";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c6a3ed855025662df9b35ae2d1cac3fa41775a7612655804bde7276a8cab8d1c";
  };

  propagatedBuildInputs = [ aiohttp ];

  # Project doesn't have any tests
  doCheck = false;
  pythonImportsCheck = [ "pyxeoma" ];

  meta = with lib; {
    description = "Python wrapper for Xeoma web server API";
    homepage = "https://github.com/jeradM/pyxeoma";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}