biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / spoof-mac / default.nix
blob3b7bbd0d52a232ddf96a851a15b846892a93649c
1 { lib, buildPythonPackage, fetchFromGitHub, docopt }:
3 buildPythonPackage rec {
4   pname = "spoof-mac";
5   version = "unstable-2018-01-27";
7   src = fetchFromGitHub {
8     owner = "feross";
9     repo = "SpoofMAC";
10     rev = "2cfc796150ef48009e9b765fe733e37d82c901e0";
11     sha256 = "sha256-Qiu0URjUyx8QDVQQUFGxPax0J80e2m4+bPJeqFoKxX8=";
12   };
14   propagatedBuildInputs = [ docopt ];
16   # No tests
17   doCheck = false;
19   pythonImportsCheck = [ "spoofmac" ];
21   meta = with lib; {
22     description = "Change your MAC address for debugging purposes";
23     homepage = "https://github.com/feross/SpoofMAC";
24     license = licenses.mit;
25     maintainers = with maintainers; [ siraben ];
26     platforms = platforms.unix;
27   };