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

buildPythonPackage rec {
  pname = "plaster";
  version = "0.5";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0z48pis4qyhyqj3ia82r04diaa153dw66wrpbly06hdzvhw8j0ia";
  };

  checkPhase = ''
    py.test
  '';

  checkInputs = [ pytest pytestcov ];
}