mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python3Packages.asyncio-dgram: init at 1.1.1
This commit is contained in:
parent
0972bbc12d
commit
b7b0a1fe77
33
pkgs/development/python-modules/asyncio-dgram/default.nix
Normal file
33
pkgs/development/python-modules/asyncio-dgram/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytestCheckHook
|
||||||
|
, pytest-asyncio
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "asyncio-dgram";
|
||||||
|
version = "1.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jsbronder";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1zkmjvq47zw2fsbnzhr5mh9rsazx0z1f8m528ash25jrxsza5crm";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
pytest-asyncio
|
||||||
|
];
|
||||||
|
|
||||||
|
disabledTests = [ "test_protocol_pause_resume" ];
|
||||||
|
pythonImportsCheck = [ "asyncio_dgram" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python support for higher level Datagram";
|
||||||
|
homepage = "https://github.com/jsbronder/asyncio-dgram";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user