ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / ms-cv / default.nix
blobaa8e361338ddcaebc2f2ef8e118cc2666230989f
1 { lib
2 , buildPythonPackage
3 , isPy27
4 , fetchFromGitHub
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "ms-cv";
10   version = "0.1.1";
12   disabled = isPy27;
14   src = fetchFromGitHub {
15     owner = "OpenXbox";
16     repo = "ms_cv";
17     rev = "v${version}";
18     sha256 = "0pkna0kvmq1cp4rx3dnzxsvvlxxngryp77k42wkyw2phv19a2mjd";
19   };
21   postPatch = ''
22     substituteInPlace setup.py \
23       --replace "pytest-runner" ""
24   '';
26   checkInputs = [
27     pytestCheckHook
28   ];
30   meta = with lib; {
31     description = "Correlation vector implementation in python";
32     homepage = "https://github.com/OpenXbox/ms_cv";
33     license = licenses.mit;
34     maintainers = with maintainers; [ dotlambda ];
35   };