writers: add writeGuile[Bin] (#364531)
[NixPkgs.git] / pkgs / development / python-modules / ciscomobilityexpress / default.nix
blob44d604e3513286750e22ce77b94408008b0a7942
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   requests,
6   python,
7 }:
9 buildPythonPackage rec {
10   pname = "ciscomobilityexpress";
11   version = "1.0.2";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "d8787245598e8371a83baa4db1df949d8a942c43f13454fa26ee3b09c3ccafc0";
17   };
19   propagatedBuildInputs = [ requests ];
21   # tests directory is set up, but has no tests
22   checkPhase = ''
23     ${python.interpreter} -m unittest
24   '';
26   pythonImportsCheck = [ "ciscomobilityexpress" ];
28   meta = with lib; {
29     description = "Module to interact with Cisco Mobility Express APIs to fetch connected devices";
30     homepage = "https://github.com/fbradyirl/ciscomobilityexpress";
31     license = licenses.mit;
32     maintainers = with maintainers; [ uvnikita ];
33   };