Unverified Commit 2ec1d18a authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #313476 from fabaff/dyn-refactor

python312Packages.dyn: refactor
parents 8a3a3b7f 3ec13e8d
Loading
Loading
Loading
Loading
+0 −18
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchPypi, coverage }:

buildPythonPackage rec {
  pname = "cov-core";
  version = "1.15.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0k3np9ymh06yv1ib96sb6wfsxjkqhmik8qfsn119vnhga9ywc52a";
  };

  propagatedBuildInputs = [ coverage ];

  meta = with lib; {
    description = "Plugin core for use by pytest-cov, nose-cov and nose2-cov";
  };
}
+17 −15
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchPypi, pytest, pytest-cov, mock
, pytest-xdist, cov-core, glibcLocales }:
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "dyn";
  version = "1.8.6";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-933etYrKRgSqJfOMIuIDL4Uv4/RdSEFMNWFtW5qiPpA=";
    hash = "sha256-933etYrKRgSqJfOMIuIDL4Uv4/RdSEFMNWFtW5qiPpA=";
  };

  buildInputs = [ glibcLocales ];
  build-system = [ setuptools ];

  nativeCheckInputs = [
    pytest
    pytest-cov
    mock
    pytest-xdist
    cov-core
  ];
  # Disable checks because they are not stateless and require internet access.
  # Module has no tests
  doCheck = false;

  LC_ALL="en_US.UTF-8";
  pythonImportsCheck = [ "dyn" ];

  meta = with lib; {
    description = "Dynect dns lib";
    homepage = "https://dyn.readthedocs.org/en/latest/intro.html";
    homepage = "https://dyn.readthedocs.org";
    changelog = "https://github.com/dyninc/dyn-python/blob/${version}/HISTORY.rst";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
  };
}
+0 −21
Original line number Diff line number Diff line
{ buildPythonPackage, fetchPypi, lib, nose, cov-core }:

buildPythonPackage rec {
  pname = "nose-cov";
  version = "1.6";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "04j4fw01bv648gimqqj4z88606lcczbm1k326agcc74gb4sh7v4b";
  };

  propagatedBuildInputs = [ nose cov-core ];

  meta = with lib; {
    homepage = "https://pypi.org/project/nose-cov/";
    license = licenses.mit;
    description = "This plugin produces coverage reports. It also supports coverage of subprocesses.";
    maintainers = with maintainers; [ ];
  };
}
+0 −53
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, httplib2
, oauth
, oauth2
, semantic-version
, flask
, httpretty
, oauthlib
, pyflakes
, pytest
, pytestcache
, pytest-cov
, cov-core
, pytest-flakes
, sphinx
, mock
, chalice
, isPy27
}:

buildPythonPackage rec {
  pname = "pylti";
  version = "0.7.0";
  format = "setuptools";

  disabled = !isPy27;

  # There is no need to fix mock. https://github.com/mitodl/pylti/pull/48
  postPatch = ''
    substituteInPlace setup.py --replace "mock==1.0.1" "mock"
  '';

  propagatedBuildInputs = [ httplib2 oauth oauth2 semantic-version ];
  nativeCheckInputs = [
    flask httpretty oauthlib pyflakes pytest pytestcache pytest-cov cov-core
    pytest-flakes sphinx mock chalice
  ];

  src = fetchPypi {
    pname = "PyLTI";
    inherit version;
    sha256 = "80938a235b1ab390f6889a95237d087ea7adde5cc50fcae9c80c49898e8ee78e";
  };

  meta = {
    description = "Implementation of IMS LTI interface that works with edX";
    homepage = "https://github.com/mitodl/pylti";
    license = lib.licenses.bsdOriginal;
    maintainers = with lib.maintainers; [ layus ];
  };
}
+4 −1
Original line number Diff line number Diff line
@@ -93,7 +93,8 @@ mapAliases ({
  CommonMark = commonmark; # added 2023-02-1
  ConfigArgParse = configargparse; # added 2021-03-18
  coronavirus = throw "coronavirus was removed, because the source is not providing the data anymore."; # added 2023-05-04
  covCore = cov-core; # added 2024-01-03
  covCore = throw "covCore was renamed to cov-core and subsequently removed since it has ben unmaintained since 2014"; # added 2024-05-20
  cov-core = throw "cov-core has been removed, it was archived and unmaintained since 2014"; # added 2024-05-21
  cozy = throw "cozy was removed because it was not actually https://pypi.org/project/Cozy/."; # added 2022-01-14
  cryptacular = throw "cryptacular was removed, because it was disabled on all python version since 3.6 and last updated in 2021"; # Added 2024-05-13
  cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23
@@ -303,6 +304,7 @@ mapAliases ({
  nghttp2 = throw "in 1.52.0 removed deprecated python bindings."; # added 2023-06-08
  ninja-python = ninja; # add 2022-08-03
  nosejs = throw "nosejs has been removed since it has not been maintained for 15 years and there are no dependent packages"; # added 2024-05-21
  nose-cov = throw "nose-cov has been removed, it was archived and unmaintained since 2012"; # added 2024-05-21
  nose-cover3 = throw "nose-cover3 has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-02-16
  nose-cprof = throw "nose-cprof has been removed since it has not been maintained for 7 years and there are no dependent packages"; # added 2024-05-21
  nose_progressive = throw "nose_progressive has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; #added 2023-02-21
@@ -362,6 +364,7 @@ mapAliases ({
  pyhs100 = throw "pyhs100 has been removed in favor of python-kasa."; # added 2024-01-05
  pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20
  PyLD = pyld; # added 2022-06-22
  pylti = throw "pylti has been removed because it is unmaintained since 2019"; # added 2024-05-21
  pymaging = throw "pymaging has been removed because it has not been maintained for 10 years and has been archived."; # added 2023-11-04
  pymaging_png = throw "pymaging_png has been removed because it has not been maintained for 10 years and has been archived."; # added 2023-11-04
  pymatgen-lammps = throw "pymatgen-lammps has been removed because it is unmaintained and broken"; # added 2023-06-20
Loading