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 #119126 from fabaff/pycomfoconnect
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
plaster
/
default.nix
blob
82aaebb10039366ed82adc995d7017b8b8dd271d
1
{ buildPythonPackage, fetchPypi
2
, pytest, pytestcov
3
}:
4
5
buildPythonPackage rec {
6
pname = "plaster";
7
version = "1.0";
8
9
src = fetchPypi {
10
inherit pname version;
11
sha256 = "8351c7c7efdf33084c1de88dd0f422cbe7342534537b553c49b857b12d98c8c3";
12
};
13
14
checkPhase = ''
15
py.test
16
'';
17
18
checkInputs = [ pytest pytestcov ];
19
}