Files
nixpkgs/pkgs/development/python-modules/pytest-pep257/default.nix
T

21 lines
493 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{ stdenv, buildPythonPackage, fetchPypi, pytest, pep257 }:
2017-05-27 11:25:35 +02:00
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "pytest-pep257";
version = "0.0.5";
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2017-05-27 11:25:35 +02:00
sha256 = "082v3d5k4331x53za51kl8zxsndsw1pcyf1xdfpb2gjdjrhixb8w";
};
2017-05-27 11:25:35 +02:00
buildInputs = [ pytest ];
propagatedBuildInputs = [ pep257 ];
2017-05-27 11:25:35 +02:00
meta = with stdenv.lib; {
homepage = https://github.com/anderslime/pytest-pep257;
description = "py.test plugin for PEP257";
license = licenses.mit;
};
}