depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-pep257/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
485 B
Nix

{ lib, buildPythonPackage, fetchPypi, pytest, pep257 }:
buildPythonPackage rec {
pname = "pytest-pep257";
version = "0.0.5";
src = fetchPypi {
inherit pname version;
sha256 = "082v3d5k4331x53za51kl8zxsndsw1pcyf1xdfpb2gjdjrhixb8w";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ pep257 ];
meta = with lib; {
homepage = "https://github.com/anderslime/pytest-pep257";
description = "py.test plugin for PEP257";
license = licenses.mit;
};
}