repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
plaster
/
default.nix
blob
b0ce5c418df45efb7cb0fcc3cf7ed1dc1de99152
1
{ buildPythonPackage, fetchPypi
2
, pytest, pytest-cov
3
}:
4
5
buildPythonPackage rec {
6
pname = "plaster";
7
version = "1.1.2";
8
format = "setuptools";
9
10
src = fetchPypi {
11
inherit pname version;
12
hash = "sha256-+L78VL+MEUfBCrQCl+yEwmdvotTqXW9STZQ2qAB075g=";
13
};
14
15
checkPhase = ''
16
py.test
17
'';
18
19
nativeCheckInputs = [ pytest pytest-cov ];
20
}