nixpkgs/pkgs/development/python-modules/cachecontrol/default.nix

35 lines
682 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, requests
, msgpack
, pytest
}:
buildPythonPackage rec {
2019-12-29 10:28:06 +01:00
version = "0.12.6";
pname = "CacheControl";
src = fetchPypi {
inherit pname version;
2019-12-29 10:28:06 +01:00
sha256 = "be9aa45477a134aee56c8fac518627e1154df063e85f67d4f83ce0ccc23688e8";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ requests msgpack ];
# tests not included with pypi release
doCheck = false;
checkPhase = ''
pytest tests
'';
meta = with stdenv.lib; {
homepage = "https://github.com/ionrock/cachecontrol";
description = "Httplib2 caching for requests";
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}