Unverified Commit 921f5180 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

stravaweblib: init at 0.0.8 (#350041)

parents dc402355 f12a3771
Loading
Loading
Loading
Loading
+44 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # setuptools
  setuptools,
  setuptools-scm,

  # dependencies
  stravalib,
  beautifulsoup4,
}:

buildPythonPackage rec {
  pname = "stravaweblib";
  version = "0.0.8";

  src = fetchFromGitHub {
    owner = "pR0Ps";
    repo = "stravaweblib";
    rev = "refs/tags/v${version}";
    hash = "sha256-v54UeRjhoH0GN2AVFKRjqKJ6BYUXVATe2qoDk9P48oU=";
  };

  build-system = [
    setuptools
    setuptools-scm
  ];

  dependencies = [
    stravalib
    beautifulsoup4
  ];

  pythonImportsCheck = [ "stravaweblib" ];

  meta = {
    description = "Python library for extending the Strava v3 API using web scraping";
    homepage = "https://github.com/pR0Ps/stravaweblib";
    license = lib.licenses.mpl20;
    maintainers = with lib.maintainers; [ stv0g ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -15119,6 +15119,8 @@ self: super: with self; {
  stravalib = callPackage ../development/python-modules/stravalib { };
  stravaweblib = callPackage ../development/python-modules/stravaweblib { };
  strawberry-graphql = callPackage ../development/python-modules/strawberry-graphql { };
  strawberry-django = callPackage ../development/python-modules/strawberry-django { };