about summary refs log tree commit diff
path: root/pkgs/development/python-modules/plaster/default.nix
blob: f3ba127b0a926cc5b59aedbdc65e2f89a9eb2d0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ buildPythonPackage, fetchPypi
, pytest, pytest-cov
}:

buildPythonPackage rec {
  pname = "plaster";
  version = "1.1.2";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-+L78VL+MEUfBCrQCl+yEwmdvotTqXW9STZQ2qAB075g=";
  };

  checkPhase = ''
    py.test
  '';

  nativeCheckInputs = [ pytest pytest-cov ];
}