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

46 lines
1.1 KiB
Nix
Raw Normal View History

2020-08-17 13:39:58 +01:00
{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy27
, decorator
2020-09-22 01:39:57 +01:00
, http-parser
2020-08-17 13:39:58 +01:00
, importlib-metadata
, python
, python_magic
, six
, urllib3 }:
buildPythonPackage rec {
pname = "mocket";
2020-10-10 17:19:27 +01:00
version = "3.9.1";
2020-08-17 13:39:58 +01:00
src = fetchPypi {
inherit pname version;
2020-10-10 17:19:27 +01:00
sha256 = "1bp6642qh8fkjqgvp1vif2zbzpappbbq3sgs7vfr87inn4frc2cz";
2020-08-17 13:39:58 +01:00
};
patchPhase = ''
substituteInPlace requirements.txt \
--replace "python-magic==0.4.18" "python-magic" \
--replace "urllib3==1.25.10" "urllib3"
substituteInPlace setup.py --replace 'setup_requires=["pipenv"]' "setup_requires=[]"
'';
propagatedBuildInputs = [
decorator
2020-09-22 01:39:57 +01:00
http-parser
2020-08-17 13:39:58 +01:00
python_magic
urllib3
six
] ++ lib.optionals (isPy27) [ six ];
# Pypi has no runtests.py, github has no requirements.txt. No way to test, no way to install.
doCheck = false;
pythonImportsCheck = [ "mocket" ];
meta = with lib; {
description = "A socket mock framework - for all kinds of socket animals, web-clients included";
homepage = "https://github.com/mindflayer/python-mocket";
license = licenses.bsd3;
maintainers = with maintainers; [ hexa ];
};
}