You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
631 B
32 lines
631 B
{ fetchFromGitHub, python3Packages }:
|
|
with python3Packages;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mattermost-github-integration";
|
|
version = "0.0.0-unstable";
|
|
src = fetchFromGitHub {
|
|
owner = "softdevteam";
|
|
repo = "mattermost-github-integration";
|
|
rev = "1124a0ff233b50ed6070cb84cfffd128ad219831";
|
|
sha256 = "1hfvjaxjhliy8sv9j3616fkdwd2jqhfsj9ai7ggx88zhxknrfx85";
|
|
};
|
|
propagatedBuildInputs = [
|
|
appdirs
|
|
click
|
|
flask
|
|
itsdangerous
|
|
jinja2
|
|
markupsafe
|
|
olefile
|
|
packaging
|
|
pillow
|
|
pyparsing
|
|
requests
|
|
six
|
|
werkzeug
|
|
];
|
|
checkInputs = [
|
|
pytest
|
|
];
|
|
doCheck = true;
|
|
}
|
|
|