mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 08:26:37 +01:00
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.
42 lines
777 B
Nix
42 lines
777 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
babel,
|
|
translationstring,
|
|
iso8601,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "colander";
|
|
version = "2.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-QZzWgXjS7m7kyuXVyxgwclY0sKKECRcVbonrJZIjfvM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
babel
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
translationstring
|
|
iso8601
|
|
];
|
|
|
|
pythonImportsCheck = [ "colander" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = {
|
|
description = "Simple schema-based serialization and deserialization library";
|
|
homepage = "https://github.com/Pylons/colander";
|
|
license = lib.licenses.free; # http://repoze.org/LICENSE.txt
|
|
maintainers = [ ];
|
|
};
|
|
}
|