silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / runs / default.nix
blob19ea9683b3784eef30c79a5d30ac9f24e0fe4607
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   poetry-core,
6   xmod,
7   pytestCheckHook,
8   tdir,
9 }:
11 buildPythonPackage rec {
12   pname = "runs";
13   version = "1.2.2";
14   pyproject = true;
16   src = fetchFromGitHub {
17     owner = "rec";
18     repo = "runs";
19     rev = "v${version}";
20     hash = "sha256-aEamhXr3C+jYDzQGzcmGFyl5oEtovxlNacFM08y0ZEk=";
21   };
23   build-system = [ poetry-core ];
25   dependencies = [ xmod ];
27   nativeCheckInputs = [
28     pytestCheckHook
29     tdir
30   ];
32   disabledTests = [
33     # requires .git directory
34     "test_many"
35   ];
37   pythonImportsCheck = [ "runs" ];
39   meta = with lib; {
40     description = "Run a block of text as a subprocess";
41     homepage = "https://github.com/rec/runs";
42     changelog = "https://github.com/rec/runs/blob/${src.rev}/CHANGELOG";
43     license = licenses.mit;
44     maintainers = [ ];
45   };