talosctl: 1.9.1 -> 1.9.2 (#374443)
[NixPkgs.git] / pkgs / development / python-modules / aiomisc-pytest / default.nix
blob0e0add78bf19fcc900798ad9df913f20d35b614b
2   lib,
3   aiomisc,
4   buildPythonPackage,
5   fetchPypi,
6   poetry-core,
7   pytest,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "aiomisc-pytest";
13   version = "1.2.1";
14   pyproject = true;
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     pname = "aiomisc_pytest";
20     inherit version;
21     hash = "sha256-4mWP77R3CoX+XhoT6BbxQtxpINpdmeozjYUsegNfMyU=";
22   };
24   build-system = [ poetry-core ];
26   pythonRelaxDeps = [ "pytest" ];
28   buildInputs = [ pytest ];
30   dependencies = [ aiomisc ];
32   pythonImportsCheck = [ "aiomisc_pytest" ];
34   # Module has no tests
35   doCheck = false;
37   meta = with lib; {
38     description = "Pytest integration for aiomisc";
39     homepage = "https://github.com/aiokitchen/aiomisc-pytest";
40     license = licenses.asl20;
41     maintainers = with maintainers; [ fab ];
42   };