mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
96321ebf93
Diff: https://github.com/explosion/confection/compare/refs/tags/v0.1.3...v0.1.4 Changelog: https://github.com/explosion/confection/releases/tag/v0.1.4
45 lines
868 B
Nix
45 lines
868 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pydantic
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, srsly
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "confection";
|
|
version = "0.1.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "explosion";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-PWtxLcnPd7V4yeHfOl1kYPr5UeqkYCfzGE/DoL94tq0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pydantic
|
|
srsly
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"confection"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library that offers a configuration system";
|
|
homepage = "https://github.com/explosion/confection";
|
|
changelog = "https://github.com/explosion/confection/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|