package new dependencies for python3 Seafile 7.1.1
This commit is contained in:
parent
2fbfda643b
commit
6b5ed21c12
5 changed files with 101 additions and 8 deletions
19
django-formtools/default.nix
Normal file
19
django-formtools/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue