Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 29 lines 655 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy27 2, vcver }: 3 4buildPythonPackage rec { 5 pname = "deepmerge"; 6 version = "0.1.0"; 7 disabled = isPy27; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "0d1ab9lxwymqxxd58j50id1wib48xym3ss5xw172i2jfwwwzfdrx"; 12 }; 13 14 propagatedBuildInputs = [ 15 vcver 16 ]; 17 18 # depends on https://pypi.org/project/uranium/ 19 doCheck = false; 20 21 pythonImportsCheck = [ "deepmerge" ]; 22 23 meta = with lib; { 24 description = "A toolset to deeply merge python dictionaries."; 25 homepage = "http://deepmerge.readthedocs.io/en/latest/"; 26 license = licenses.mit; 27 maintainers = with maintainers; [ hexa ]; 28 }; 29}