about summary refs log tree commit diff
path: root/pkgs/development/python-modules/plaster/default.nix
blob: b0ce5c418df45efb7cb0fcc3cf7ed1dc1de99152 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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 ];
}