blob: 20f0d3570e236f5223b591783b4f836c4c020fcc (
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
|
{
lib,
buildPythonPackage,
fetchFromSourcehut,
kubo,
packaging,
tomli,
flit-core,
}:
buildPythonPackage rec {
pname = "ipwhl";
version = "1.1.0";
pyproject = true;
src = fetchFromSourcehut {
owner = "~cnx";
repo = "ipwhl-utils";
rev = version;
hash = "sha256-YaIYcoUnbiv9wUOFIzGj2sWGbh7NsqRQcqOR2X6+QZA=";
};
nativeBuildInputs = [ flit-core ];
buildInputs = [ kubo ];
propagatedBuildInputs = [
packaging
tomli
];
doCheck = false; # there's no test
pythonImportsCheck = [ "ipwhl" ];
meta = {
description = "Utilities for the InterPlanetary Wheels";
homepage = "https://git.sr.ht/~cnx/ipwhl-utils";
license = lib.licenses.agpl3Plus;
maintainers = [ lib.maintainers.McSinyx ];
};
}
|