arduino-create-agent: init at 1.6.1 (#300694)
[NixPkgs.git] / pkgs / tools / networking / spoof-mac / default.nix
blob7bd2111474466bab94331f92548a3ef71823d032
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   docopt,
6 }:
8 buildPythonPackage rec {
9   pname = "spoof-mac";
10   version = "unstable-2018-01-27";
12   src = fetchFromGitHub {
13     owner = "feross";
14     repo = "SpoofMAC";
15     rev = "2cfc796150ef48009e9b765fe733e37d82c901e0";
16     sha256 = "sha256-Qiu0URjUyx8QDVQQUFGxPax0J80e2m4+bPJeqFoKxX8=";
17   };
19   propagatedBuildInputs = [ docopt ];
21   # No tests
22   doCheck = false;
24   pythonImportsCheck = [ "spoofmac" ];
26   meta = with lib; {
27     description = "Change your MAC address for debugging purposes";
28     homepage = "https://github.com/feross/SpoofMAC";
29     license = licenses.mit;
30     maintainers = with maintainers; [ siraben ];
31     platforms = platforms.unix;
32   };