silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / aiorun / default.nix
blob53cfadb2118a1f36dd6f127fee9368a036588b71
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   flit-core,
7   pygments,
8   pytestCheckHook,
9   uvloop,
12 buildPythonPackage rec {
13   pname = "aiorun";
14   version = "2024.5.1";
15   pyproject = true;
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "cjrh";
21     repo = "aiorun";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-7wgsj44sX2Be/QyvG7KgQ/xSgsr+WPh7eeROeICSHGw=";
24   };
26   build-system = [ flit-core ];
28   dependencies = [ pygments ];
30   nativeCheckInputs = [
31     pytestCheckHook
32     uvloop
33   ];
35   preBuild = ''
36     export HOME=$TMPDIR
37   '';
39   pythonImportsCheck = [ "aiorun" ];
41   meta = with lib; {
42     description = "Boilerplate for asyncio applications";
43     homepage = "https://github.com/cjrh/aiorun";
44     changelog = "https://github.com/cjrh/aiorun/blob/v${version}/CHANGES";
45     license = licenses.asl20;
46     maintainers = [ ];
47   };