blob: c35930d1ff5dde9433d7e4af9c5fa1acbc7295b5 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
setuptools-scm,
pyramid,
pytestCheckHook,
pytest-cache,
webtest,
marshmallow,
colander,
}:
buildPythonPackage rec {
pname = "cornice";
version = "6.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Cornices";
repo = "cornice";
rev = version;
hash = "sha256-jAf8unDPpr/ZAWkb9LhOW4URjwcRnaYVUKmfnYBStTg=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [ pyramid ];
nativeCheckInputs = [
pytestCheckHook
pytest-cache
webtest
marshmallow
colander
];
pythonImportsCheck = [ "cornice" ];
meta = {
homepage = "https://github.com/mozilla-services/cornice";
description = "Build Web Services with Pyramid";
license = lib.licenses.mpl20;
maintainers = [ ];
};
}
|