Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / serverfiles / default.nix
blob9c8fa8cb14973d2b301ee0d0b82072808438efe5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 , unittestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "serverfiles";
10   version = "0.3.1";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-XhD8MudYeR43NbwIvOLtRwKoOx5Fq5bF1ZzIruz76+E=";
16   };
18   propagatedBuildInputs = [ requests ];
20   pythonImportsCheck = [ "serverfiles" ];
21   nativeCheckInputs = [ unittestCheckHook ];
23   meta = {
24     description = "An utility that accesses files on a HTTP server and stores them locally for reuse";
25     homepage = "https://github.com/biolab/serverfiles";
26     license = [ lib.licenses.gpl3Plus ];
27     maintainers = [ lib.maintainers.lucasew ];
28   };