1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #116094 from mweinelt/python/deepmerge

python3Packages.deepmerge: 0.1.1 -> 0.2.1
This commit is contained in:
Sandro 2021-03-13 01:12:26 +01:00 committed by GitHub
commit 2a2df05019
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,22 +1,30 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
, vcver }:
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, setuptools-scm
, vcver
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "deepmerge";
version = "0.1.1";
version = "0.2.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "fa1d44269786bcc12d30a7471b0b39478aa37a43703b134d7f12649792f92c1f";
sha256 = "082bvlk65pkf9qzkzzl8fq7s6zfz1b2v5pcb0ikwg1nx0xspggaz";
};
propagatedBuildInputs = [
nativeBuildInputs = [
setuptools-scm
vcver
];
# depends on https://pypi.org/project/uranium/
doCheck = false;
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "deepmerge" ];