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.
30 lines
626 B
Nix
30 lines
626 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.7.0";
|
|
pname = "bespon";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-dGtXw4uq6pdyXBVfSi9s7kCFUqA1PO7qWEGY0JNAz8Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
# upstream doesn't contain tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "bespon" ];
|
|
meta = {
|
|
description = "Encodes and decodes data in the BespON format";
|
|
homepage = "https://github.com/gpoore/bespon_py";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ synthetica ];
|
|
};
|
|
}
|