Unverified Commit dbeb6247 authored by Raghav Sood's avatar Raghav Sood Committed by GitHub
Browse files

Merge pull request #312461 from Roshaen/devgoldyutils

python311Packages.devgoldyutils, python312Packages.devgoldyutils: init at 3.0.0
parents d3472a87 d479157b
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -17588,6 +17588,12 @@
    github = "rosehobgoblin";
    githubId = 84164410;
  };
  roshaen = {
    name = "Roshan Kumar";
    email = "roshaen09@gmail.com";
    github = "roshaen";
    githubId = 58213083;
  };
  rossabaker = {
    name = "Ross A. Baker";
    email = "ross@rossabaker.com";
+30 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools-scm,
}:

buildPythonPackage rec {
  pname = "devgoldyutils";
  version = "3.0.0";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2kGu9QPP5WqKv2gO9DAkE9SNDerzNaEDRt5DrrYD9nQ=";
  };

  doCheck = false;

  nativeBuildInputs = [ setuptools-scm ];

  pythonImportsCheck = [ "devgoldyutils" ];

  meta = {
    description = "A collection of utility functions for Python used by mov-cli";
    homepage = "https://github.com/THEGOLDENPRO/devgoldyutils";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ roshaen ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2966,6 +2966,8 @@ self: super: with self; {
  detectron2 = callPackage ../development/python-modules/detectron2 { };
  devgoldyutils = callPackage ../development/python-modules/devgoldyutils { };
  devialet = callPackage ../development/python-modules/devialet { };
  devito = callPackage ../development/python-modules/devito { };