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

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

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

  checkPhase = ''
    py.test
  '';

  nativeCheckInputs = [
    pytest
    pytest-cov
  ];
}