blob: 769003db0f8a6b1b726f2fda9a3562fcd766f9ac (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest,
}:
buildPythonPackage rec {
version = "2.0.1";
format = "setuptools";
pname = "path-and-address";
src = fetchFromGitHub {
owner = "joeyespo";
repo = "path-and-address";
rev = "v${version}";
sha256 = "0b0afpsaim06mv3lhbpm8fmawcraggc11jhzr6h72kdj1cqjk5h6";
};
nativeCheckInputs = [ pytest ];
checkPhase = ''
py.test
'';
meta = {
description = "Functions for server CLI applications used by humans";
homepage = "https://github.com/joeyespo/path-and-address";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ koral ];
};
}
|