Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.pydexcom: init at 0.2.0

+32
+30
pkgs/development/python-modules/pydexcom/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , requests 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "pydexcom"; 9 + version = "0.2.0"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "gagebenne"; 13 + repo = pname; 14 + rev = version; 15 + sha256 = "19h7r0qbsqd6k6g4nz6z3k9kdmk0sx5zpsrgxwnhsff5fqi0y2ls"; 16 + }; 17 + 18 + propagatedBuildInputs = [ requests ]; 19 + 20 + # tests are interacting with the Dexcom API 21 + doCheck = false; 22 + pythonImportsCheck = [ "pydexcom" ]; 23 + 24 + meta = with lib; { 25 + description = "Python API to interact with Dexcom Share service"; 26 + homepage = "https://github.com/gagebenne/pydexcom"; 27 + license = with licenses; [ mit ]; 28 + maintainers = with maintainers; [ fab ]; 29 + }; 30 + }
+2
pkgs/top-level/python-packages.nix
··· 5133 5134 pydenticon = callPackage ../development/python-modules/pydenticon { }; 5135 5136 pydicom = callPackage ../development/python-modules/pydicom { }; 5137 5138 pydispatcher = callPackage ../development/python-modules/pydispatcher { };
··· 5133 5134 pydenticon = callPackage ../development/python-modules/pydenticon { }; 5135 5136 + pydexcom = callPackage ../development/python-modules/pydexcom { }; 5137 + 5138 pydicom = callPackage ../development/python-modules/pydicom { }; 5139 5140 pydispatcher = callPackage ../development/python-modules/pydispatcher { };