mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
python3Packages.pytest-black: init at 0.3.7
This commit is contained in:
parent
48091cc043
commit
3b4bdf3f38
27
pkgs/development/python-modules/pytest-black/default.nix
Normal file
27
pkgs/development/python-modules/pytest-black/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, black
|
||||
, pytest
|
||||
, setuptools_scm
|
||||
, toml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-black";
|
||||
version = "0.3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "03gwwy1h3qnfh6vpfhgsa5ag53a9sw1g42sc2s8a2hilwb7yrfvm";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools_scm ];
|
||||
|
||||
propagatedBuildInputs = [ black pytest toml ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A pytest plugin to enable format checking with black";
|
||||
homepage = "https://github.com/shopkeep/pytest-black";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jonringer ];
|
||||
};
|
||||
}
|
@ -1083,6 +1083,8 @@ in {
|
||||
|
||||
pytesseract = callPackage ../development/python-modules/pytesseract { };
|
||||
|
||||
pytest-black = callPackage ../development/python-modules/pytest-black { };
|
||||
|
||||
pytest-click = callPackage ../development/python-modules/pytest-click { };
|
||||
|
||||
pytest-check = callPackage ../development/python-modules/pytest-check { };
|
||||
|
Loading…
Reference in New Issue
Block a user