about summary refs log tree commit diff
path: root/pkgs/development/python-modules/plaster/default.nix
blob: 75c0bdc00f1686e79db736c622e557088301059d (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 = "1.0";
  name = "${pname}-${version}";

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

  checkPhase = ''
    py.test
  '';

  checkInputs = [ pytest pytestcov ];
}