nixpkgs/pkgs/development/python-modules/pyscss/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

35 lines
686 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
six,
}:
buildPythonPackage rec {
pname = "pyscss";
version = "1.4.0";
src = fetchFromGitHub {
repo = "pyScss";
owner = "Kronuz";
rev = "refs/tags/v${version}";
hash = "sha256-z0y4z+/JE6rZWHAvps/taDZvutyVhxxs2gMujV5rNu4=";
};
nativeCheckInputs = [ pytestCheckHook ];
propagatedBuildInputs = [ six ];
# Test suite is broken.
# See https://github.com/Kronuz/pyScss/issues/415
doCheck = false;
meta = with lib; {
description = "Scss compiler for Python";
homepage = "https://pyscss.readthedocs.org/en/latest/";
license = licenses.mit;
maintainers = [ ];
};
}