pythonPackages.omegaconf: init at 1.4.1
This commit is contained in:
parent
55adc491f0
commit
60c03fb380
25
pkgs/development/python-modules/omegaconf/default.nix
Normal file
25
pkgs/development/python-modules/omegaconf/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
|
||||||
|
, pytest, pytestrunner, pyyaml, six, pathlib2, isPy27 }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "omegaconf";
|
||||||
|
version = "1.4.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "omry";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1vpcdjlq54pm8xmkv2hqm2n1ysvz2a9iqgf55x0w6slrb4595cwb";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
buildInputs = [ pytestrunner ];
|
||||||
|
propagatedBuildInputs = [ pyyaml six ] ++ stdenv.lib.optional isPy27 pathlib2;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A framework for configuring complex applications";
|
||||||
|
homepage = "https://github.com/omry/omegaconf";
|
||||||
|
license = licenses.free; # prior bsd license (1988)
|
||||||
|
maintainers = with maintainers; [ bcdarwin ];
|
||||||
|
};
|
||||||
|
}
|
@ -4402,6 +4402,8 @@ in {
|
|||||||
|
|
||||||
od = callPackage ../development/python-modules/od { };
|
od = callPackage ../development/python-modules/od { };
|
||||||
|
|
||||||
|
omegaconf = callPackage ../development/python-modules/omegaconf { };
|
||||||
|
|
||||||
orderedset = callPackage ../development/python-modules/orderedset { };
|
orderedset = callPackage ../development/python-modules/orderedset { };
|
||||||
|
|
||||||
python-multipart = callPackage ../development/python-modules/python-multipart { };
|
python-multipart = callPackage ../development/python-modules/python-multipart { };
|
||||||
|
Loading…
Reference in New Issue
Block a user