blob: c5bb86397a77383d5bf86a41c3ae67b164821f4a (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
grandalf,
matplotlib,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "crysp";
version = "1.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "bdcht";
repo = "crysp";
rev = "v${version}";
hash = "sha256-51SKS6OOXIFT1L3YICR6a4QGSz/rbB8V+Z0u0jMO474=";
};
propagatedBuildInputs = [
grandalf
matplotlib
];
nativeCheckInputs = [ pytestCheckHook ];
postPatch = ''
substituteInPlace setup.py \
--replace "'pytest-runner'," ""
'';
pythonImportsCheck = [ "crysp" ];
meta = {
description = "Module that provides crypto-related facilities";
homepage = "https://github.com/bdcht/crysp";
license = with lib.licenses; [ gpl2Only ];
maintainers = with lib.maintainers; [ fab ];
};
}
|