pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / aiomisc-pytest / default.nix
blobebbc22e37a22e3fb2be6c68880cd403430fd5d2e
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 ];
27   pythonRelaxDeps = [ "pytest" ];
29   buildInputs = [ pytest ];
31   dependencies = [ aiomisc ];
33   pythonImportsCheck = [ "aiomisc_pytest" ];
35   # Module has no tests
36   doCheck = false;
38   meta = with lib; {
39     description = "Pytest integration for aiomisc";
40     homepage = "https://github.com/aiokitchen/aiomisc-pytest";
41     license = licenses.asl20;
42     maintainers = with maintainers; [ fab ];
43   };