blob: beb545b4da59c8148c5b073c3de2a30d58e084c1 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pretend";
version = "1.0.9";
format = "setuptools";
src = fetchFromGitHub {
owner = "alex";
repo = "pretend";
rev = "v${version}";
hash = "sha256-OqMfeIMFNBBLq6ejR3uOCIHZ9aA4zew7iefVlAsy1JQ=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pretend" ];
meta = {
description = "Module for stubbing";
homepage = "https://github.com/alex/pretend";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|