Unverified Commit 2d3babed authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

Merge pull request #306275 from Mic92/units

python3.pkgs.units: remove
parents 572af610 c28b158a
Loading
Loading
Loading
Loading
+0 −22
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "units";
  version = "0.07";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "43eb3e073e1b11289df7b1c3f184b5b917ccad178b717b03933298716f200e14";
  };

  meta = with lib; {
    description = "Python support for quantities with units";
    homepage = "https://bitbucket.org/adonohue/units/";
    license = licenses.psfl;
    maintainers = [ ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -16350,8 +16350,6 @@ self: super: with self; {
  unique-log-filter = callPackage ../development/python-modules/unique-log-filter { };
  units = callPackage ../development/python-modules/units { };
  unittest-data-provider = callPackage ../development/python-modules/unittest-data-provider { };
  unittest-xml-reporting = callPackage ../development/python-modules/unittest-xml-reporting { };