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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "8351c7c7efdf33084c1de88dd0f422cbe7342534537b553c49b857b12d98c8c3";
  };

  checkPhase = ''
    py.test
  '';

  checkInputs = [ pytest pytestcov ];
}