ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / fields / default.nix
blob35bf686b435305bd88d60818c7d1ecfd4a958c82
1 { buildPythonPackage, lib, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "fields";
5   version = "5.0.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-MdSqA9jUTjXfE8Qx3jUTaZfwR6kkpZfYT3vCCeG+Vyc=";
10   };
12   pythonImportsCheck = [ "fields" ];
14   meta = with lib; {
15     description = "Container class boilerplate killer";
16     homepage = "https://github.com/ionelmc/python-fields";
17     license = licenses.bsd2;
18     maintainers = [ maintainers.sheepforce ];
19   };