mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, anyio
|
|
, asyncio-throttle
|
|
, dataclasses
|
|
, ircstates
|
|
, async_stagger
|
|
, async-timeout
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ircrobots";
|
|
version = "0.3.8";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jesopo";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "06q86dqllxvi3nssfplmjk9yxaybighwh87lrxfpfhl8yy4z68jz";
|
|
};
|
|
|
|
postPatch = ''
|
|
# too specific pins https://github.com/jesopo/ircrobots/issues/3
|
|
sed -iE 's/anyio.*/anyio/' requirements.txt
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
anyio
|
|
asyncio-throttle
|
|
ircstates
|
|
async_stagger
|
|
async-timeout
|
|
] ++ lib.optionals (pythonOlder "3.7") [
|
|
dataclasses
|
|
];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} -m unittest test
|
|
'';
|
|
|
|
pythonImportsCheck = [ "ircrobots" ];
|
|
|
|
meta = with lib; {
|
|
description = "Asynchronous bare-bones IRC bot framework for python3";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/jesopo/ircrobots";
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|