075e8c2c4f
This is almost all find-and-replace. I manually edited: * pkgs/development/python-modules/notifications-android-tv/default.nix, * pkgs/servers/home-assistant/default.nix, * pkgs/development/tools/continuous-integration/buildbot/master.nix A few files have not been changed in this PR because they would cause rebuilds. This PR should have 0 rebuilds.
32 lines
630 B
Nix
32 lines
630 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "frozenlist2";
|
|
version = "1.0.0";
|
|
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rohanpm";
|
|
repo = "frozenlist2";
|
|
rev = "v${version}";
|
|
hash = "sha256-fF0oFZ2q1wRH7IKBlCjm3Za4xtEMSHyEaGL09rHgtTY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "frozenlist2" ];
|
|
|
|
meta = {
|
|
description = "Immutable list for Python";
|
|
homepage = "https://github.com/rohanpm/frozenlist2";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ t4ccer ];
|
|
};
|
|
}
|