blob: a62120d180eaaabab6a4aa7ab1b246d79d90abf7 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
justbases,
unittestCheckHook,
hypothesis,
}:
buildPythonPackage rec {
pname = "justbytes";
version = "0.15.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "mulkieran";
repo = "justbytes";
tag = "v${version}";
hash = "sha256-+jwIK1ZU+j58VoOfZAm7GdFy7KHU28khwzxhYhcws74=";
};
propagatedBuildInputs = [ justbases ];
nativeCheckInputs = [
unittestCheckHook
hypothesis
];
meta = {
description = "Computing with and displaying bytes";
homepage = "https://github.com/mulkieran/justbytes";
license = lib.licenses.lgpl2Plus;
maintainers = with lib.maintainers; [ nickcao ];
};
}
|