brainix/sources/nixpkgs/pkgs/development/python-modules/ruamel_ordereddict/default.nix
2026-02-13 17:06:24 +09:00

24 lines
517 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, isPyPy
}:
buildPythonPackage rec {
pname = "ruamel.ordereddict";
version = "0.4.14";
disabled = isPy3k || isPyPy;
src = fetchPypi {
inherit pname version;
sha256 = "281051d26eb2b18ef3d920e1e260716a52bd058a6b1a2f324102fc6a15cb8d4a";
};
meta = with stdenv.lib; {
description = "A version of dict that keeps keys in insertion resp. sorted order";
homepage = https://bitbucket.org/ruamel/ordereddict;
license = licenses.mit;
};
}