blob: 4281e6de0edfd75e2f7e39d646371b570516b260 (
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
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
six,
unidecode,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "preggy";
version = "1.4.4";
format = "setuptools";
propagatedBuildInputs = [
six
unidecode
];
nativeCheckInputs = [ pytestCheckHook ];
src = fetchPypi {
inherit pname version;
sha256 = "25ba803afde4f35ef543a60915ced2e634926235064df717c3cb3e4e3eb4670c";
};
meta = with lib; {
description = "Assertion library for Python";
homepage = "http://heynemann.github.io/preggy/";
license = licenses.mit;
maintainers = with maintainers; [ jluttine ];
};
}
|