Skip to content

Commit

Permalink
python310Packages.omegaconf: 2.2.2 -> 2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Aug 23, 2022
1 parent b5d72fe commit 1678d87
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions pkgs/development/python-modules/omegaconf/default.nix
Original file line number Diff line number Diff line change
@@ -1,31 +1,29 @@
{ lib
, antlr4_9-python3-runtime
, buildPythonPackage
, fetchFromGitHub
, jre_minimal
, pydevd
, pytest-mock
, pytestCheckHook
, pyyaml
, pythonOlder
, jre_minimal
, antlr4_9-python3-runtime
, pydevd }:
, pyyaml
}:

buildPythonPackage rec {
pname = "omegaconf";
version = "2.2.2";
version = "2.2.3";
format = "setuptools";

disabled = pythonOlder "3.6";

src = fetchFromGitHub {
owner = "omry";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-bUJ80sa2ot2JSkt29eFwSiKL6R1X1+VVeE9dFIy4Mg0=";
hash = "sha256-sJUYi0M/6SBSeKVSJoNY7IbVmzRZVTlek8AyL2cOPAM=";
};

postPatch = ''
substituteInPlace setup.py --replace 'setup_requires=["pytest-runner"]' 'setup_requires=[]'
'';

nativeBuildInputs = [
jre_minimal
];
Expand All @@ -37,16 +35,18 @@ buildPythonPackage rec {

checkInputs = [
pydevd
pytestCheckHook
pytest-mock
pytestCheckHook
];

pythonImportsCheck = [ "omegaconf" ];
pythonImportsCheck = [
"omegaconf"
];

meta = with lib; {
description = "A framework for configuring complex applications";
description = "Framework for configuring complex applications";
homepage = "https://github.com/omry/omegaconf";
license = licenses.free; # prior bsd license (1988)
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
};
}

0 comments on commit 1678d87

Please sign in to comment.