systemd: add missing patch for Musl
[NixPkgs.git] / pkgs / development / python-modules / applicationinsights / default.nix
bloba4329ff4dc70bdd1e071a0f509990ffd30467d14
2   buildPythonPackage,
3   lib,
4   fetchPypi,
5   portalocker,
6 }:
8 buildPythonPackage rec {
9   version = "0.11.10";
10   format = "setuptools";
11   pname = "applicationinsights";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0b761f3ef0680acf4731906dfc1807faa6f2a57168ae74592db0084a6099f7b3";
16   };
18   propagatedBuildInputs = [ portalocker ];
20   meta = with lib; {
21     description = "This project extends the Application Insights API surface to support Python";
22     homepage = "https://github.com/Microsoft/ApplicationInsights-Python";
23     license = licenses.mit;
24     maintainers = [ ];
25   };