blob: 5f3b5a53a2b8cc4101ab174cd2f3df9a60c0e1ed (
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,
fetchPypi,
fastprogress,
fastcore,
}:
buildPythonPackage rec {
pname = "fastdownload";
version = "0.0.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-IFB+246JQGofvXd15uKj2BpN1jPdUGsOnPDhYT6DHWo=";
};
propagatedBuildInputs = [
fastprogress
fastcore
];
# no real tests
doCheck = false;
pythonImportsCheck = [ "fastdownload" ];
meta = {
homepage = "https://github.com/fastai/fastdownload";
description = "Easily download, verify, and extract archives";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ rxiao ];
};
}
|