My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyxeoma/default.nix

28 lines
612 B

{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pyxeoma";
version = "1.4.2";
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 ];
};
}