Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / brelpy / default.nix
blob83d5946c54b87005b38debfb54dc4de98d6c0aab
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pycryptodome
5 , pygithub
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "brelpy";
11   version = "0.0.3";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-MYWSKYd7emHZfY+W/UweQtTg62GSUMybpecL9BR8dhg=";
19   };
21   propagatedBuildInputs = [
22     pycryptodome
23   ];
25   # Source not tagged and PyPI releases don't contain tests
26   doCheck = false;
28   pythonImportsCheck = [
29     "brelpy"
30   ];
32   meta = with lib; {
33     description = "Python to communicate with the Brel hubs";
34     homepage = "https://gitlab.com/rogiervandergeer/brelpy";
35     license = licenses.agpl3Only;
36     maintainers = with maintainers; [ fab ];
37   };