python3Packages.serverfiles: init at 0.3.1

Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
lucasew 2023-07-08 14:47:59 -03:00
parent c7e99a323b
commit 2132e27240
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "serverfiles";
version = "0.3.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-XhD8MudYeR43NbwIvOLtRwKoOx5Fq5bF1ZzIruz76+E=";
};
propagatedBuildInputs = [ requests ];
pythonImportsCheck = [ "serverfiles" ];
nativeCheckInputs = [ unittestCheckHook ];
meta = {
description = "An utility that accesses files on a HTTP server and stores them locally for reuse";
homepage = "https://github.com/biolab/serverfiles";
license = [ lib.licenses.gpl3Plus ];
maintainers = [ lib.maintainers.lucasew ];
};
}

View file

@ -11586,6 +11586,8 @@ self: super: with self; {
servefile = callPackage ../development/python-modules/servefile { };
serverfiles = callPackage ../development/python-modules/serverfiles { };
serverlessrepo = callPackage ../development/python-modules/serverlessrepo { };
service-identity = callPackage ../development/python-modules/service-identity { };