nixpkgs/pkgs/development/python-modules/orderedmultidict/default.nix
Alexis Hildebrandt bf995e3641 treewide: Remove ending period from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00

32 lines
681 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
flake8,
six,
pythonOlder,
importlib-metadata,
}:
buildPythonPackage rec {
pname = "orderedmultidict";
version = "1.0.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1bc2v0yflsxjyyjx4q9wqx0j3bvzcw9z87d5pz4iqac7bsxhn1q4";
};
nativeCheckInputs = [ flake8 ];
propagatedBuildInputs = [ six ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
meta = with lib; {
description = "Ordered Multivalue Dictionary";
homepage = "https://github.com/gruns/orderedmultidict";
license = licenses.publicDomain;
maintainers = with maintainers; [ vanzef ];
};
}