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/pynello/default.nix

43 lines
805 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, python-dateutil
, pythonOlder
, requests
, requests-oauthlib
}:
buildPythonPackage rec {
pname = "pynello";
version = "2.0.3";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "pschmitt";
repo = pname;
rev = version;
hash = "sha256-sUy37sEPEMyFYFVBzFVdcg31nZAyC+Ricm4LqxmjuQQ=";
};
propagatedBuildInputs = [
python-dateutil
requests
requests-oauthlib
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"pynello"
];
meta = with lib; {
description = "Python library for nello.io intercoms";
homepage = "https://github.com/pschmitt/pynello";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}