mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
python3Packages.automx2: init at 2022.01
Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>
This commit is contained in:
parent
dc1668abd0
commit
3d479ec076
36
pkgs/development/python-modules/automx2/default.nix
Normal file
36
pkgs/development/python-modules/automx2/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, flask
|
||||
, flask-migrate
|
||||
, ldap3
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "automx2";
|
||||
version = "2022.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-My0YT5FLYjXSRKC0oUYNybewv6CIKr93tqMZ2fYY+5I=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
flask
|
||||
flask-migrate
|
||||
ldap3
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "automx2" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Email client configuration made easy";
|
||||
homepage = "https://rseichter.github.io/automx2/";
|
||||
changelog = "https://github.com/rseichter/automx2/blob/${version}/CHANGELOG";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ twey ];
|
||||
};
|
||||
}
|
@ -908,6 +908,8 @@ self: super: with self; {
|
||||
|
||||
automate-home = callPackage ../development/python-modules/automate-home { };
|
||||
|
||||
automx2 = callPackage ../development/python-modules/automx2 { };
|
||||
|
||||
autopage = callPackage ../development/python-modules/autopage { };
|
||||
|
||||
autopep8 = callPackage ../development/python-modules/autopep8 { };
|
||||
|
Loading…
Reference in New Issue
Block a user