mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
14 lines
306 B
Nix
14 lines
306 B
Nix
{ buildPythonPackage, fetchPypi, lazr_delegates }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lazr.config";
|
|
version = "2.2.3";
|
|
|
|
propagatedBuildInputs = [ lazr_delegates ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b74a73f8b63e6dc6732fc1f3d88e2f236596ddf089ef6e1794ece060e8cfabe1";
|
|
};
|
|
}
|