python3Packages.sortedcollections: 1.2.3 -> 2.1.0

This commit is contained in:
Fabian Affolter 2021-01-20 08:58:03 +01:00
parent dd3238c002
commit 02a0928803

View file

@ -1,24 +1,28 @@
{ lib, stdenv { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pytest-cov
, pytestCheckHook , pytestCheckHook
, sortedcontainers , sortedcontainers
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "sortedcollections"; pname = "sortedcollections";
version = "1.2.3"; version = "2.1.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "grantjenks"; owner = "grantjenks";
repo = "python-sortedcollections"; repo = "python-sortedcollections";
rev = "v${version}"; rev = "v${version}";
sha256 = "06ifkbhkj5fpsafibw0fs7b778g7q0gd03crvbjk04k0f3wjxc5z"; sha256 = "sha256-GkZO8afUAgDpDjIa3dhO6nxykqrljeKldunKMODSXfg=";
}; };
propagatedBuildInputs = [ sortedcontainers ]; propagatedBuildInputs = [ sortedcontainers ];
checkInputs = [ pytestCheckHook ]; checkInputs = [
pytest-cov
pytestCheckHook
];
pythonImportsCheck = [ "sortedcollections" ]; pythonImportsCheck = [ "sortedcollections" ];