Diff: https://github.com/JeffResc/sharkiq/compare/v1.4.1...v1.4.2 Changelog: https://github.com/JeffResc/sharkiq/releases/tag/v1.4.2
53 lines
1002 B
Nix
53 lines
1002 B
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
auth0-python,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
requests,
|
|
setuptools,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sharkiq";
|
|
version = "1.4.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JeffResc";
|
|
repo = "sharkiq";
|
|
tag = "v${version}";
|
|
hash = "sha256-VhWqYYGZRsEPW4g9kQznr50ujGhLcTs+TS3atxsqCng=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "setuptools-scm>=9.2.0" "setuptools-scm"
|
|
'';
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
auth0-python
|
|
requests
|
|
];
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "sharkiq" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python API for Shark IQ robots";
|
|
homepage = "https://github.com/JeffResc/sharkiq";
|
|
changelog = "https://github.com/JeffResc/sharkiq/releases/tag/${src.tag}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|