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
python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
plaster
/
default.nix
blob
0651404dc47788127bfc59c7e24ce336cae6c497
1
{
2
buildPythonPackage,
3
fetchPypi,
4
pytest,
5
pytest-cov-stub,
6
}:
7
8
buildPythonPackage rec {
9
pname = "plaster";
10
version = "1.1.2";
11
format = "setuptools";
12
13
src = fetchPypi {
14
inherit pname version;
15
hash = "sha256-+L78VL+MEUfBCrQCl+yEwmdvotTqXW9STZQ2qAB075g=";
16
};
17
18
checkPhase = ''
19
py.test
20
'';
21
22
nativeCheckInputs = [
23
pytest
24
pytest-cov-stub
25
];
26
}