blob: 54b25617a0c70cf280f77ea858d68ca242456e48 (
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
33
34
35
36
37
38
39
40
|
{
lib,
pycryptodome,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "cart";
version = "1.2.2";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "CybercentreCanada";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-0dHdXb4v92681xL21FsrIkNgNQ9R5ULV1lnSCITZzP8=";
};
propagatedBuildInputs = [ pycryptodome ];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "unittests" ];
pythonImportsCheck = [ "cart" ];
meta = with lib; {
description = "Python module for the CaRT Neutering format";
mainProgram = "cart";
homepage = "https://github.com/CybercentreCanada/cart";
changelog = "https://github.com/CybercentreCanada/cart/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
|