package new dependencies for python3 Seafile 7.1.1

This commit is contained in:
Trolli Schmittlauch 2019-12-25 01:35:05 +01:00
parent 2fbfda643b
commit 6b5ed21c12
5 changed files with 101 additions and 8 deletions

View file

@ -0,0 +1,19 @@
{ lib, buildPythonPackage, fetchPypi,
django }:
buildPythonPackage rec {
pname = "django-formtools";
version = "2.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256:1chkbl188yj6hvhh1wgjpfgql553k6hrfwxzb8vv4lfdq41jq9y5";
};
propagatedBuildInputs = [ django ];
doCheck = false; # TODO: fix tests
checkInputs = [ django ];
meta = {
description = "a collection of assorted utilities that are useful for specific form use cases.";
maintainers = with lib.maintainers; [ schmittlauch ];
license = lib.licenses.bsd3;
};
}