Skip to content

Commit

Permalink
python3Packages.deepmerge: init at 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt authored and Jon committed Aug 2, 2020
1 parent 6c13b76 commit 25ac3f0
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/development/python-modules/deepmerge/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
, vcver }:

buildPythonPackage rec {
pname = "deepmerge";
version = "0.1.0";
disabled = isPy27;

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

propagatedBuildInputs = [
vcver
];

# depends on https://pypi.org/project/uranium/
doCheck = false;

pythonImportsCheck = [ "deepmerge" ];

meta = with lib; {
description = "A toolset to deeply merge python dictionaries.";
homepage = "http://deepmerge.readthedocs.io/en/latest/";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,8 @@ in {

deepdiff = callPackage ../development/python-modules/deepdiff { };

deepmerge = callPackage ../development/python-modules/deepmerge { };

django-sesame = callPackage ../development/python-modules/django-sesame { };

bravado-core = callPackage ../development/python-modules/bravado-core { };
Expand Down

0 comments on commit 25ac3f0

Please sign in to comment.